aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Wrapper.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-10-21 16:27:44 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-10-21 16:27:47 -0400
commitb6f6f126d0e3fa23687f2d8c537de207e2c7b5d3 (patch)
tree84ba828aad25d8805d7663e60b71494775999c05 /IkiWiki/Wrapper.pm
parent990a4b99b00c162da218f951041fed50c4259049 (diff)
downloadikiwiki-b6f6f126d0e3fa23687f2d8c537de207e2c7b5d3.tar
ikiwiki-b6f6f126d0e3fa23687f2d8c537de207e2c7b5d3.tar.gz
avoid -O default for CFLAGS, and document
Diffstat (limited to 'IkiWiki/Wrapper.pm')
-rw-r--r--IkiWiki/Wrapper.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/IkiWiki/Wrapper.pm b/IkiWiki/Wrapper.pm
index 7a1529119..5427a5c80 100644
--- a/IkiWiki/Wrapper.pm
+++ b/IkiWiki/Wrapper.pm
@@ -142,9 +142,9 @@ $pre_exec
}
EOF
- my $cc=exists $ENV{CC} ? possibly_foolish_untaint($ENV{CC}) : 'cc';
- my $cflags=exists $ENV{CFLAGS} ? possibly_foolish_untaint($ENV{CFLAGS}) : '-O';
- if (system($cc, $cflags, "$wrapper.c", "-o", "$wrapper.new") != 0) {
+ my @cc=exists $ENV{CC} ? possibly_foolish_untaint($ENV{CC}) : 'cc';
+ push @cc, 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"));
}