summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2005-02-05 17:22:14 +0000
committerDr. Stephen Henson <steve@openssl.org>2005-02-05 17:22:14 +0000
commit8aa36bcac9b75f5f85048e2359ccfd44383d178c (patch)
treea91b7321c9b8dcbd106702f9d095bae96ff8f426 /util
parent485e30dbe195beed5d98497e87bbb99eecbb4551 (diff)
In mkdef.pl ignore trailing whitespace in #ifdef lines
Diffstat (limited to 'util')
-rwxr-xr-xutil/mkdef.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index 204a056a48..98cd12706c 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -479,7 +479,7 @@ sub do_defs
push(@tag,$1);
$tag{$1}=-1;
}
- } elsif (/^\#\s*ifdef\s+(.*)/) {
+ } elsif (/^\#\s*ifdef\s+(\S*)/) {
push(@tag,"-");
push(@tag,$1);
$tag{$1}=1;