diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-10-06 22:26:11 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-10-06 22:26:11 +0000 |
commit | be46dd419cf7ea00a5a12096ca82c2b9dd53a2e2 (patch) | |
tree | d2529a0f752362e093523b3b3a17ac1c20d23f52 /sys | |
parent | f34f86b4577f08a4f6d425bf8a33abbdf2dbb1b5 (diff) |
Remove explicit -fno-stack-protector now that the compiler workaround is in
place.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/landisk/conf/Makefile.landisk | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/landisk/conf/Makefile.landisk b/sys/arch/landisk/conf/Makefile.landisk index 38f4ae8bc75..b562b075f2d 100644 --- a/sys/arch/landisk/conf/Makefile.landisk +++ b/sys/arch/landisk/conf/Makefile.landisk @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.landisk,v 1.2 2006/10/06 21:48:50 mickey Exp $ +# $OpenBSD: Makefile.landisk,v 1.3 2006/10/06 22:26:10 miod Exp $ # # Makefile for OpenBSD/landisk # @@ -45,9 +45,6 @@ CMACHFLAGS= -m4-nofpu \ -fno-builtin-printf -fno-builtin-log -fno-builtin-main .if ${IDENT:M-DNO_PROPOLICE} CMACHFLAGS+= -fno-stack-protector -.else -# to prevent the sky from falling on our heads -CMACHFLAGS+= -fno-stack-protector .endif COPTS?= -O2 CFLAGS= ${DEBUG} ${CWARNFLAGS} ${CMACHFLAGS} ${COPTS} ${PIPE} |