diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2014-06-16 08:32:48 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2014-06-18 08:04:44 -0400 |
commit | 57d2761b46edd92efa00f984cb9840506d3b6483 (patch) | |
tree | 3ca557dd2bef73e5846c7a6df66cc6c08cac24c1 /cflags.SH | |
parent | 9bc33472025546a667b2f318255b6fa650b901e8 (diff) | |
download | perl-57d2761b46edd92efa00f984cb9840506d3b6483.tar.gz |
Allow cflags.SH edits to ccflags to stick.
Diffstat (limited to 'cflags.SH')
-rwxr-xr-x | cflags.SH | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -176,10 +176,6 @@ Intel*) ;; # # Is that you, Intel C++? esac rm -f _cflags.c _cflags$_exe -# XXX There is something wrong in the below: furious editing on ccflags, -# but that ccflags will be overwritten by the source of config.sh in the -# extracted cflags. - case "$gccversion" in '') ;; *) @@ -231,7 +227,8 @@ $startsh # This file is generated by cflags.SH - +# Base flags. myccflags so that the possible edits by cflags.SH will stick. +myccflags="$ccflags" # Extra warnings, used e.g. for gcc. warn="$warn" # Extra standardness. @@ -256,6 +253,7 @@ case $PERL_CONFIG_SH in echo "Can't find config.sh."; exit 1 fi . $TOP/config.sh + ccflags="$myccflags" # Restore possible edits by cflags.SH. ;; esac |