From c0d6066d99bc844873bf2772848cf84e6c2d6c84 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sun, 15 Jun 2008 23:50:50 -0700 Subject: 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. --- syncfiles.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'syncfiles.pl') 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 = )) { 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"); -- cgit v1.2.3