diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-06-15 23:50:50 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-06-15 23:50:50 -0700 |
commit | c0d6066d99bc844873bf2772848cf84e6c2d6c84 (patch) | |
tree | 218cd7799c5d20c8b85c3a6f412ba97fd6d6b449 /syncfiles.pl | |
parent | c5d8030768d1c8358958136b5d3e75f0fba448e7 (diff) | |
download | nasm-c0d6066d99bc844873bf2772848cf84e6c2d6c84.tar.gz nasm-c0d6066d99bc844873bf2772848cf84e6c2d6c84.tar.bz2 nasm-c0d6066d99bc844873bf2772848cf84e6c2d6c84.zip |
syncfiles: use #-- ... --# for consistency with mkdep.pl
mkdep.pl already used #-- ... --# (two dashes) whereas syncfiles.pl
was using #--- ... ---# (three dashes). Change syncfiles.pl to match
mkdep.pl.
Diffstat (limited to 'syncfiles.pl')
-rwxr-xr-x | syncfiles.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/syncfiles.pl b/syncfiles.pl index f7e1163..9596923 100755 --- a/syncfiles.pl +++ b/syncfiles.pl @@ -51,7 +51,7 @@ foreach $file (@ARGV) { while (defined($line = <FILE>)) { chomp $line; if ($processing) { - if ($line eq '#--- End File Lists ---#') { + if ($line eq '#-- End File Lists --#') { push(@lines, $line."\n"); $processing = 0; } elsif ($first) { @@ -68,7 +68,7 @@ foreach $file (@ARGV) { } } else { push(@lines, $line."\n"); - if ($line eq '#--- Begin File Lists ---#') { + if ($line eq '#-- Begin File Lists --#') { $processing = 1; if (!$first) { push(@lines, "# Edit in $first_file, not here!\n"); |