Skip to content

Commit

Permalink
Remove unused LIBS variable
Browse files Browse the repository at this point in the history
  • Loading branch information
pietern committed Apr 14, 2012
1 parent caba585 commit 620357f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ endif
ifeq ($(uname_S),SunOS)
FINAL_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) $(REDIS_CFLAGS) -D__EXTENSIONS__ -D_XPG6
FINAL_LDFLAGS= $(LDFLAGS) $(REDIS_LDFLAGS)
FINAL_LIBS= $(LIBS) -ldl -lnsl -lsocket -lm -lpthread
FINAL_LIBS= -ldl -lnsl -lsocket -lm -lpthread
DEBUG= -g -ggdb
else
FINAL_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) $(REDIS_CFLAGS)
FINAL_LDFLAGS= $(LDFLAGS) $(REDIS_LDFLAGS)
FINAL_LIBS= $(LIBS) -lm -pthread
FINAL_LIBS= -lm -pthread
DEBUG= -g -rdynamic -ggdb
endif

Expand Down

0 comments on commit 620357f

Please sign in to comment.