summaryrefslogtreecommitdiff
path: root/make/configure.pm
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-04-27 14:46:33 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-04-27 14:46:33 +0000
commit6a64a69fbc56b97f6285fbaad9f30fe58f211a88 (patch)
tree6c14652af7ca8f19dd6de544f9f36d7ea6a17cee /make/configure.pm
parent2d7e463111c208c9ec8f3f406ddb3c035d4f737a (diff)
Fix this up a bit nicer
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9588 e03df62e-2008-0410-955e-edbf42e46eb7
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;
}