diff options
author | obrien <obrien@FreeBSD.org> | 2003-06-02 02:29:26 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-06-02 02:29:26 +0000 |
commit | c8226cb0130550f65893a9119b8fe1277a31b8aa (patch) | |
tree | 4e8e48c08fc6a842f78c9cf12ef713cd9b703439 /gnu/lib | |
parent | 9c354cd6a6ef3b988a85dcc989c42ddb9ddc00c9 (diff) | |
download | FreeBSD-src-c8226cb0130550f65893a9119b8fe1277a31b8aa.zip FreeBSD-src-c8226cb0130550f65893a9119b8fe1277a31b8aa.tar.gz |
Use ?= before someone brings it up.
Diffstat (limited to 'gnu/lib')
-rw-r--r-- | gnu/lib/csu/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/lib/csu/Makefile b/gnu/lib/csu/Makefile index 137bf87..9115ed1 100644 --- a/gnu/lib/csu/Makefile +++ b/gnu/lib/csu/Makefile @@ -9,7 +9,7 @@ CCDIR= ${.CURDIR}/../../usr.bin/cc SRCS= crtstuff.c tconfig.h OBJS= crtbegin.o crtend.o SOBJS= crtbegin.So crtend.So -CSTD= gnu89 +CSTD?= gnu89 CFLAGS+= -DIN_GCC -DHAVE_LD_EH_FRAME_HDR CFLAGS+= -finhibit-size-directive -fno-inline-functions \ -fno-exceptions -fno-omit-frame-pointer |