From 7d011355c6c1fe7e567658902029b8c107542acf Mon Sep 17 00:00:00 2001 From: Jean Delvare Date: Wed, 3 Oct 2007 15:06:25 +0000 Subject: [PATCH] Fix the build of i2cset and i2cget. They were accidentally swapped. git-svn-id: http://lm-sensors.org/svn/i2c-tools/trunk@4915 7894878c-1315-0410-8ee3-d5d059ff63e0 --- tools/Module.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/Module.mk b/tools/Module.mk index c94a467..699a3b9 100644 --- a/tools/Module.mk +++ b/tools/Module.mk @@ -22,10 +22,10 @@ $(TOOLS_DIR)/i2cdetect: $(TOOLS_DIR)/i2cdetect.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/i2cdump: $(TOOLS_DIR)/i2cdump.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o $(CC) $(LDFLAGS) -o $@ $^ -$(TOOLS_DIR)/i2cset: $(TOOLS_DIR)/i2cget.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o +$(TOOLS_DIR)/i2cset: $(TOOLS_DIR)/i2cset.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o $(CC) $(LDFLAGS) -o $@ $^ -$(TOOLS_DIR)/i2cget: $(TOOLS_DIR)/i2cset.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o +$(TOOLS_DIR)/i2cget: $(TOOLS_DIR)/i2cget.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o $(CC) $(LDFLAGS) -o $@ $^ #