Skip to content

Commit

Permalink
Makefile: fix switchers linking
Browse files Browse the repository at this point in the history
Fix #1
  • Loading branch information
Ansa89 authored May 11, 2019
1 parent 2ccded2 commit a3c1beb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ version.h: version.sh

switchres: $(OBJECTS) $(INCLUDES)
@echo " LD $@"
@$(CC) $(LDFLAGS) $(OBJECTS) -o $@
@$(CC) $(OBJECTS) -o $@ $(LDFLAGS)

install: switchres
install -D -m0755 switchres $(BINDIR)/switchres
Expand Down

0 comments on commit a3c1beb

Please sign in to comment.