From 990a4b99b00c162da218f951041fed50c4259049 Mon Sep 17 00:00:00 2001 From: Giulio Eulisse Date: Mon, 19 Oct 2009 09:40:45 +0200 Subject: [PATCH] Pick up user specified CFLAGS when compiling the wrapper. (cherry picked from commit 13e9383b48857daa206387f3486eb00e3b171a68) --- IkiWiki/Wrapper.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/IkiWiki/Wrapper.pm b/IkiWiki/Wrapper.pm index ff110b5ff..7a1529119 100644 --- a/IkiWiki/Wrapper.pm +++ b/IkiWiki/Wrapper.pm @@ -143,7 +143,8 @@ $pre_exec EOF my $cc=exists $ENV{CC} ? possibly_foolish_untaint($ENV{CC}) : 'cc'; - if (system($cc, "$wrapper.c", "-o", "$wrapper.new") != 0) { + my $cflags=exists $ENV{CFLAGS} ? possibly_foolish_untaint($ENV{CFLAGS}) : '-O'; + if (system($cc, $cflags, "$wrapper.c", "-o", "$wrapper.new") != 0) { #translators: The parameter is a C filename. error(sprintf(gettext("failed to compile %s"), "$wrapper.c")); } -- 2.32.0.93.g670b81a890