Changeset 4915

Show
Ignore:
Timestamp:
10/03/07 17:06:25 (1 year ago)
Author:
khali
Message:

Fix the build of i2cset and i2cget. They were accidentally swapped.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • i2c-tools/trunk/tools/Module.mk

    r4911 r4915  
    2323        $(CC) $(LDFLAGS) -o $@ $^ 
    2424 
    25 $(TOOLS_DIR)/i2cset: $(TOOLS_DIR)/i2cget.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o 
     25$(TOOLS_DIR)/i2cset: $(TOOLS_DIR)/i2cset.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o 
    2626        $(CC) $(LDFLAGS) -o $@ $^ 
    2727 
    28 $(TOOLS_DIR)/i2cget: $(TOOLS_DIR)/i2cset.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o 
     28$(TOOLS_DIR)/i2cget: $(TOOLS_DIR)/i2cget.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o 
    2929        $(CC) $(LDFLAGS) -o $@ $^ 
    3030