summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
Diffstat (limited to 'make')
-rw-r--r--make/utilities.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/make/utilities.pm b/make/utilities.pm
index c00a541b3..5b09b764e 100644
--- a/make/utilities.pm
+++ b/make/utilities.pm
@@ -315,6 +315,10 @@ sub translate_functions($$)
chomp($replace);
$line =~ s/exec\("(.+?)"\)/$replace/;
}
+ while ($line =~ /execruntime\("(.+?)"\)/)
+ {
+ $line =~ s/execruntime\("(.+?)"\)/`\1`/;
+ }
while ($line =~ /eval\("(.+?)"\)/)
{
print "Evaluating perl code for module \033[1;32m$module\033[0m ... ";