summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-08-08 12:03:34 +0200
committerLennart Poettering <lennart@poettering.net>2012-08-08 12:03:34 +0200
commit5a45a93627609451784a04366cfa1150d32611d1 (patch)
treeb901ba044e5a8e274060f5ae7d85243a12a1eaa5 /autogen.sh
parentb2c9cbafb8b1a2742978e1faf37fbb3cf4fb5d44 (diff)
build-sys: enable a couple of security features
Most distributions enable these downstream anyway, but it probably makes sense to enable them unconditionally upstream too.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 33d8fcda2..86fe9b378 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -54,7 +54,7 @@ args="$args \
fi
if [ "x$1" = "xc" ]; then
- ./configure CFLAGS='-g -O0 -Wp,-U_FORTIFY_SOURCE' $args
+ ./configure CFLAGS='-g -O0' $args
make clean
else
echo
@@ -62,6 +62,6 @@ else
echo "Initialized build system. For a common configuration please run:"
echo "----------------------------------------------------------------"
echo
- echo "./configure CFLAGS='-g -O0 -Wp,-U_FORTIFY_SOURCE' $args"
+ echo "./configure CFLAGS='-g -O0' $args"
echo
fi