summaryrefslogtreecommitdiff
path: root/ACE/bin/zap_svn_id.pl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/bin/zap_svn_id.pl')
-rwxr-xr-xACE/bin/zap_svn_id.pl4
1 files changed, 4 insertions, 0 deletions
diff --git a/ACE/bin/zap_svn_id.pl b/ACE/bin/zap_svn_id.pl
index 04a9558ae77..702a891ed33 100755
--- a/ACE/bin/zap_svn_id.pl
+++ b/ACE/bin/zap_svn_id.pl
@@ -24,4 +24,8 @@ BEGIN{undef $/;} s/\/\/\n\/\/ \$Id\$\n\/\/\n//smg;
BEGIN{undef $/;} s/\/\/\n\/\/ \$Id\$\n\n//smg;
# Replace a two line c-style id tag with nothing
BEGIN{undef $/;} s/\/\/\n\/\/ \$Id\$\n//smg;
+# Replace a one line c-style id tag with an empty line below that with nothing
+BEGIN{undef $/;} s/\/\/ \$Id\$\n\n//smg;
+# Replace a one line c-style id tag with nothing
+BEGIN{undef $/;} s/\/\/ \$Id\$\n//smg;