Ubuntu hides uname somewhere else. Don't use a full path.

This commit is contained in:
Emil Mikulic 2008-08-02 03:59:02 +00:00
parent 820b5c2e3b
commit b70dcdfab6

View File

@ -2,7 +2,7 @@
CC?=cc
CFLAGS?=-O
LIBS=`[ \`/usr/bin/uname\` = "SunOS" ] && echo -lsocket -lnsl`
LIBS=`[ \`uname\` = "SunOS" ] && echo -lsocket -lnsl`
TARGETS = bsd linux solaris
.PHONY: all $(TARGETS)