aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Wrapper.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2012-07-20 12:56:57 -0400
committerJoey Hess <joey@kitenet.net>2012-07-20 12:56:57 -0400
commit25ea99bc223346607d91b6aa09b1b49bce220518 (patch)
treeae14a3547d50cfd5c090457c10052c4fd046725d /IkiWiki/Wrapper.pm
parent7f883f520356fd1d70cf83677b9a5aabd0554262 (diff)
downloadikiwiki-25ea99bc223346607d91b6aa09b1b49bce220518.tar
ikiwiki-25ea99bc223346607d91b6aa09b1b49bce220518.tar.gz
Split CFLAGS into words when building wrapper. Closes: #682237
Diffstat (limited to 'IkiWiki/Wrapper.pm')
-rw-r--r--IkiWiki/Wrapper.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Wrapper.pm b/IkiWiki/Wrapper.pm
index c39aa2ef7..769540d29 100644
--- a/IkiWiki/Wrapper.pm
+++ b/IkiWiki/Wrapper.pm
@@ -214,7 +214,7 @@ $set_background_command
EOF
my @cc=exists $ENV{CC} ? possibly_foolish_untaint($ENV{CC}) : 'cc';
- push @cc, possibly_foolish_untaint($ENV{CFLAGS}) if exists $ENV{CFLAGS};
+ push @cc, split(' ', possibly_foolish_untaint($ENV{CFLAGS})) if exists $ENV{CFLAGS};
if (system(@cc, "$wrapper.c", "-o", "$wrapper.new") != 0) {
#translators: The parameter is a C filename.
error(sprintf(gettext("failed to compile %s"), "$wrapper.c"));