diff options
| author | Michael Stapelberg | 2009-10-01 22:13:30 +0200 | 
|---|---|---|
| committer | Michael Stapelberg | 2009-10-01 22:13:30 +0200 | 
| commit | 745fb02f2f166d3b5a2fae7d5050e92e35062393 (patch) | |
| tree | 8282a221517cf30ad33364da8b5fef8aa582c044 | |
| parent | Bugfix: close the filehandle when done (diff) | |
Fix linking (Thanks Atsutane)
| -rw-r--r-- | Makefile | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -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: | 
