From: <bl...@us...> - 2003-12-30 21:19:11
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv26090 Modified Files: cipe Log Message: Added "-fno-stack-protector" CFLAGS to compile. Index: cipe =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cipe,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- cipe 29 Dec 2003 19:35:59 -0000 1.12 +++ cipe 30 Dec 2003 21:19:08 -0000 1.13 @@ -32,6 +32,10 @@ build ) if [ "$CONFIG_CIPE" = "y" ]; then unset MAKELEVEL + if [ "$CONFIG_GCC_STACK_PROTECTOR" = "y" ]; then + export CFLAGS="-fno-stack-protector" + fi + ./configure --prefix=/usr --sysconfdir=/etc/cipe --disable-debug --disable-pkcipe || exit 1 # # "--disable-pkcipe" because of this statement in the pkcipe README file: @@ -45,6 +49,9 @@ install ) if [ "$CONFIG_CIPE" = "y" ]; then + if [ "$CONFIG_GCC_STACK_PROTECTOR" = "y" ]; then + export CFLAGS="-fno-stack-protector" + fi touch cipe.texinfo touch cipe.info mkdir -p $CDDIR/usr/bin |