diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-01-14 00:48:22 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-01-14 00:48:22 +0000 |
commit | 4f08be1ae828ab7298a05c25a080b93f8b03a48c (patch) | |
tree | e4b2dac87d4295c4dc37661e45820246c52d2631 /configure | |
parent | f9d43fcd9f82d2316f91548acd99c794f7de4071 (diff) |
Improved detail in configure, and two new functions exec() and eval() are more accountable
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6312 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1376,7 +1376,7 @@ sub getcompilerflags { while (<FLAGS>) { if ($_ =~ /^\/\* \$CompileFlags: (.+) \*\/$/) { close(FLAGS); - return translate_functions($1); + return translate_functions($1,$file); } } close(FLAGS); @@ -1389,7 +1389,7 @@ sub getlinkerflags { while (<FLAGS>) { if ($_ =~ /^\/\* \$LinkerFlags: (.+) \*\/$/) { close(FLAGS); - return translate_functions($1); + return translate_functions($1,$file); } } close(FLAGS); @@ -1402,7 +1402,7 @@ sub getdependencies { while (<FLAGS>) { if ($_ =~ /^\/\* \$ModDep: (.+) \*\/$/) { close(FLAGS); - return translate_functions($1); + return translate_functions($1,$file); } } close(FLAGS); |