From: Ruben Kerkhof Date: Sat, 24 Jan 2015 16:53:11 +0000 (+0100) Subject: No need to export variables X-Git-Tag: rec-3.7.0-rc2~42^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=af077d4c994673dd1e7d3c0a88eb16199ca615a7;p=pdns No need to export variables We're not using these variables in any child processes --- diff --git a/pdns/configure-recursor b/pdns/configure-recursor index c966d09d0..b0861fba1 100755 --- a/pdns/configure-recursor +++ b/pdns/configure-recursor @@ -44,10 +44,8 @@ EOF if $CXX $src -c -o a.out -fPIE -fPIC -DPIE; then CF_PIE="-fPIE -fPIC -DPIE" - export CF_PIE if [ "$STATIC" != "semi" ] && [ "$STATIC" != "full" ] && $CXX -pie -o a2.out a.out; then LD_PIE="-pie" - export LD_PIE fi rm -f a2.out rm -f a.out @@ -56,7 +54,6 @@ EOF # test for fortified source if $CXX $src -c -o a.out -O3 -D_FORTIFY_SOURCE=2; then CF_FORTIFY="-D_FORTIFY_SOURCE=2" - export CF_FORTIFY rm -f a.out fi @@ -66,7 +63,6 @@ EOF if $CXX $src -c -o a.out -O3 -fstack-protector --param ssp-buffer-size=4; then CF_STACK="$CF_STACK --param ssp-buffer-size=4" fi - export CF_STACK rm -f a.out fi