Split CFLAGS into words when building wrapper. Closes: #682237

master
Joey Hess 2012-07-20 12:56:57 -04:00
parent 7f883f5203
commit 25ea99bc22
2 changed files with 2 additions and 1 deletions

View File

@ -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"));

1
debian/changelog vendored
View File

@ -3,6 +3,7 @@ ikiwiki (3.20120630) UNRELEASED; urgency=low
* recentchangesdiff: When diffurl is not set, provide inline diffs
in the recentchanges page, with visibility toggleable via javascript.
Thanks, Antoine Beaupré
* Split CFLAGS into words when building wrapper. Closes: #682237
-- Joey Hess <joeyh@debian.org> Thu, 19 Jul 2012 13:46:52 -0400