diff options
author | Sam Hathaway <sam@uofr.net> | 2016-08-03 11:29:23 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-08-03 14:58:52 -0400 |
commit | b63aad46c48e6879d98d30b60159362f64ba4876 (patch) | |
tree | 0c5852adccdea167494fc17cb8aba0cc8a753357 /pm_filter | |
parent | 5d0763daab6685df349f436be098baa433a7714c (diff) | |
download | ikiwiki-b63aad46c48e6879d98d30b60159362f64ba4876.tar ikiwiki-b63aad46c48e6879d98d30b60159362f64ba4876.tar.gz |
Use single-quotes in $installdir value in case prefix includes a string metacharacter.
Diffstat (limited to 'pm_filter')
-rwxr-xr-x | pm_filter | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ BEGIN { } if (/INSTALLDIR_AUTOREPLACE/) { - $_=qq{our \$installdir="$prefix";}; + $_=qq{our \$installdir='$prefix';}; } elsif (/VERSION_AUTOREPLACE/) { $_=qq{our \$version="$ver";}; |