diff options
Diffstat (limited to 'win32/genmk95.pl')
-rw-r--r-- | win32/genmk95.pl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/win32/genmk95.pl b/win32/genmk95.pl index 6137ce2be6..8fe4f86dbf 100644 --- a/win32/genmk95.pl +++ b/win32/genmk95.pl @@ -45,9 +45,12 @@ while (<$in>) next; } else { - seek ($out, -3, 2); # no recipe, so back up and undo grouping + if (!/^\t/) { + seek ($out, -4, 2); # no recipe, so back up and undo grouping + # should be -3, but MS has its CR/LF thing... + $inrec = 0; + } print $out "$_\n"; - $inrec = 0; next; } } |