From: sof Date: Tue, 2 Mar 1999 20:23:37 +0000 (+0000) Subject: [project @ 1999-03-02 20:23:37 by sof] X-Git-Tag: Approximately_9120_patches~6441 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=1b3dbd47bc20fcbf5614c01573575f496663de5c;p=ghc-hetmet.git [project @ 1999-03-02 20:23:37 by sof] Don't prefix the generated output with \n --- diff --git a/ghc/utils/mkdependHS/mkdependHS.prl b/ghc/utils/mkdependHS/mkdependHS.prl index c2152aa..cb37695 100644 --- a/ghc/utils/mkdependHS/mkdependHS.prl +++ b/ghc/utils/mkdependHS/mkdependHS.prl @@ -224,7 +224,7 @@ while ($_ && $_ ne $End_magic_str) { # delete 'til End_magic_str $_ = ; } # insert dependencies -print "\n$Begin_magic_str", @Depend_lines, $End_magic_str || die "Failed to write out dependencies ($!)"; +print "$Begin_magic_str", @Depend_lines, $End_magic_str || die "Failed to write out dependencies ($!)"; while () { # copy the rest through print $_ || die "Failed to write out dependencies ($!)";