diff options
author | trystanscott <scott@burkee.org> | 2013-11-29 12:21:10 -0700 |
---|---|---|
committer | trystanscott <scott@burkee.org> | 2013-11-29 12:21:10 -0700 |
commit | 309807c67fd81e5b92b2cc7c18ab8580ebb5bd3f (patch) | |
tree | 8eada6b19b8f7e8b68fbed04c2356d332ab6d9e1 | |
parent | 5fd148593819675fd275ccec6a9ada0f118c6d58 (diff) |
Fix undefined symbol error on Solaris11
-rw-r--r-- | src/tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/Makefile b/src/tools/Makefile index 4dffbf0df..120ace5c7 100644 --- a/src/tools/Makefile +++ b/src/tools/Makefile @@ -10,7 +10,7 @@ MAKEARGS = 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'ANOPELIBS=${ANOPELIBS}' \ 'RUNGROUP=${RUNGROUP}' .c.o: - $(CC) $(CFLAGS) -I../include/ $< -o $* + $(CC) $(CFLAGS) $(ANOPELIBS) -I../include/ $< -o $* all: ${OBJS} |