summaryrefslogtreecommitdiffstats
path: root/install-win32/m4todef.pl
diff options
context:
space:
mode:
Diffstat (limited to 'install-win32/m4todef.pl')
-rw-r--r--install-win32/m4todef.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/install-win32/m4todef.pl b/install-win32/m4todef.pl
index c4f0409..d2705b0 100644
--- a/install-win32/m4todef.pl
+++ b/install-win32/m4todef.pl
@@ -8,7 +8,7 @@ while (<STDIN>) {
if (/^\s*$/) {
print "\n";
} elsif (/^define\((\w+),\[(.*?)\]\)/) {
- print "define $1 \"$2\"\n";
+ print "!define $1 \"$2\"\n";
} elsif (/^dnl(.*)$/) {
print "#$1\n";
}