summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--make/utilities.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/utilities.pm b/make/utilities.pm
index 5e0193361..10d36bbcf 100644
--- a/make/utilities.pm
+++ b/make/utilities.pm
@@ -151,7 +151,7 @@ sub translate_functions($$)
{
$tmpfile = tmpnam();
} until sysopen(TF, $tmpfile, O_RDWR|O_CREAT|O_EXCL, 0700);
- print "(Created and executed \033[1;32m$tmpfile)\033[0m\n";
+ print "(Created and executed \033[1;32m$tmpfile\033[0m)\n";
print TF $1;
close TF;
my $replace = `perl $tmpfile`;