summaryrefslogtreecommitdiff
path: root/make/configure.pm
diff options
context:
space:
mode:
Diffstat (limited to 'make/configure.pm')
-rw-r--r--make/configure.pm14
1 files changed, 11 insertions, 3 deletions
diff --git a/make/configure.pm b/make/configure.pm
index 6a2faaef4..4f176324c 100644
--- a/make/configure.pm
+++ b/make/configure.pm
@@ -77,8 +77,10 @@ sub getcompilerflags {
open(FLAGS, $file) or return "";
while (<FLAGS>) {
if ($_ =~ /^\/\* \$CompileFlags: (.+) \*\/$/) {
+ my $x = translate_functions($1, $file);
+ next if ($x eq "");
close(FLAGS);
- return translate_functions($1,$file);
+ return $x;
}
}
close(FLAGS);
@@ -90,8 +92,10 @@ sub getlinkerflags {
open(FLAGS, $file) or return "";
while (<FLAGS>) {
if ($_ =~ /^\/\* \$LinkerFlags: (.+) \*\/$/) {
+ my $x = translate_functions($1, $file);
+ next if ($x eq "");
close(FLAGS);
- return translate_functions($1,$file);
+ return $x;
}
}
close(FLAGS);
@@ -103,8 +107,10 @@ sub getdependencies {
open(FLAGS, $file) or return "";
while (<FLAGS>) {
if ($_ =~ /^\/\* \$ModDep: (.+) \*\/$/) {
+ my $x = translate_functions($1, $file);
+ next if ($x eq "");
close(FLAGS);
- return translate_functions($1,$file);
+ return $x;
}
}
close(FLAGS);
@@ -116,6 +122,8 @@ sub nopedantic {
open(FLAGS, $file) or return "";
while (<FLAGS>) {
if ($_ =~ /^\/\* \$NoPedantic \*\/$/) {
+ my $x = translate_functions($_, $file);
+ next if ($x eq "");
close(FLAGS);
return 1;
}