summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2009-10-01 22:13:30 +0200
committerMichael Stapelberg <michael@stapelberg.de>2009-10-01 22:13:30 +0200
commit745fb02f2f166d3b5a2fae7d5050e92e35062393 (patch)
tree8282a221517cf30ad33364da8b5fef8aa582c044
parentc4a3d64b38191541d87d508d27dca4d59364532b (diff)
Fix linking (Thanks Atsutane)
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fda8438..bcbb73d 100644
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,7 @@ src/%.o: src/%.c
@echo " CC $<"
i3status: src/general.o src/config.o src/get_load.o src/output.o src/get_cpu_temperature.o src/process_runs.o src/get_eth_info.o src/get_ip_addr.o src/get_wireless_info.o src/get_battery_info.o src/get_ipv6_addr.o i3status.o
- @$(CC) $(LDFLAGS) -o $@ src/*.o *.o
+ @$(CC) -o $@ src/*.o *.o $(LDFLAGS)
@echo " LD $@"
clean: