From: <smi...@us...> - 2003-12-30 17:58:49
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv18642/scripts Modified Files: iptables Log Message: disabled SSP Index: iptables =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/iptables,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- iptables 29 Dec 2003 19:35:59 -0000 1.23 +++ iptables 30 Dec 2003 17:58:44 -0000 1.24 @@ -28,9 +28,13 @@ case $1 in build ) + FLAGS="-O2" + if [ "$CONFIG_GCC_STACK_PROTECTOR" = "y" ]; then + FLAGS="-O2 -fno-stack-protector" + fi replace_str Makefile "/usr/local" "/usr" # parallel build failes, do not use $PMAKE - make all KERNEL_DIR=$KERNELDIR || exit 1 + make all COPT_FLAGS="$FLAGS" KERNEL_DIR=$KERNELDIR || exit 1 strip_debug # install it, so other programs can use it make install install-devel || exit 1 |