diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-10-24 22:02:18 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-10-24 22:02:18 +0000 |
commit | d8e566d0e97d8be1a04d0967e2b22b10c315509e (patch) | |
tree | 13ef5c1eba99610f5475c9c55ea49fb7ee25fc4b | |
parent | 5820efa5139ec8338ca1de3a172981a95267e992 (diff) | |
download | rtmux-d8e566d0e97d8be1a04d0967e2b22b10c315509e.tar.gz rtmux-d8e566d0e97d8be1a04d0967e2b22b10c315509e.tar.bz2 rtmux-d8e566d0e97d8be1a04d0967e2b22b10c315509e.zip |
cc -> $(CC)
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 8010fa3d..f524110d 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,4 +1,4 @@ -# $Id: GNUmakefile,v 1.117 2009-10-15 08:15:06 nicm Exp $ +# $Id: GNUmakefile,v 1.118 2009-10-24 22:02:18 nicm Exp $ .PHONY: clean @@ -12,7 +12,7 @@ LDFLAGS+= -L/usr/local/lib LIBS+= # Sun CC -ifneq ($(shell (cc -V 2>&1|awk '/Sun C/' || true)), ) +ifneq ($(shell ($(CC) -V 2>&1|awk '/Sun C/' || true)), ) CFLAGS+=-erroff=E_EMPTY_DECLARATION FDEBUG= endif |