From: Sam Hathaway Date: Wed, 3 Aug 2016 15:29:23 +0000 (-0400) Subject: Use single-quotes in $installdir value in case prefix includes a string metacharacter. X-Git-Tag: 3.20160905~63 X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/b63aad46c48e6879d98d30b60159362f64ba4876 Use single-quotes in $installdir value in case prefix includes a string metacharacter. --- diff --git a/pm_filter b/pm_filter index 374e9a44f..351e0b4d9 100755 --- a/pm_filter +++ b/pm_filter @@ -7,7 +7,7 @@ BEGIN { } if (/INSTALLDIR_AUTOREPLACE/) { - $_=qq{our \$installdir="$prefix";}; + $_=qq{our \$installdir='$prefix';}; } elsif (/VERSION_AUTOREPLACE/) { $_=qq{our \$version="$ver";};