summaryrefslogtreecommitdiff
path: root/cflags.SH
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2015-10-28 07:56:23 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2015-10-29 09:06:15 -0400
commit7bd819935395fd684e09e3c97918ba0ad387288a (patch)
tree010de1452f5027f7ea9fd3a8910576348d19bc53 /cflags.SH
parent57dca39807652a99670f69f164cadefe6218cb6a (diff)
downloadperl-7bd819935395fd684e09e3c97918ba0ad387288a.tar.gz
For perl #126468: protect quotes in myccflags.
Fixes a problem introduced by 57d2761b where ccflags contents with quotes got broken by the quotes getting stripped.
Diffstat (limited to 'cflags.SH')
-rwxr-xr-xcflags.SH6
1 files changed, 5 insertions, 1 deletions
diff --git a/cflags.SH b/cflags.SH
index f3e44ad8e9..ec70ed216a 100755
--- a/cflags.SH
+++ b/cflags.SH
@@ -387,6 +387,9 @@ echo "cflags.SH: warn = $warn"
# Code to set any extra flags here.
extra=''
+# Protect double or single quotes for better restoring of ccflags.
+myccflags=`echo $ccflags | sed -e 's/"/\\\"/g' -e "s/'/\\\'/g"`
+
echo "Extracting cflags (with variable substitutions)"
# This section of the file will have variable substitutions done on it.
# Move anything that needs config subs from !NO!SUBS! section to !GROK!THIS!.
@@ -401,7 +404,8 @@ $startsh
# This file is generated by cflags.SH
# Used to restore possible edits by cflags.SH.
-myccflags="$ccflags"
+myccflags="$myccflags"
+
# Extra warnings, used e.g. for gcc.
warn="$warn"
# Extra standardness.