From: simonpj Date: Fri, 14 Jun 2002 14:04:01 +0000 (+0000) Subject: [project @ 2002-06-14 14:04:01 by simonpj] X-Git-Tag: Approx_11550_changesets_converted~1965 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=1b45cd093cde162346bfdb25fbbb60da0be97401;p=ghc-hetmet.git [project @ 2002-06-14 14:04:01 by simonpj] Make count_lines use the in-place unlit --- diff --git a/ghc/compiler/count_lines b/ghc/compiler/count_lines index eedfdf9..3ede63d 100644 --- a/ghc/compiler/count_lines +++ b/ghc/compiler/count_lines @@ -8,7 +8,7 @@ foreach $f ( @ARGV ) { if ( $f =~ /\.lhs$/ ) { - open(INF, "c:/fptools-HEAD/ghc/utils/unlit/unlit $f - |") || die "Couldn't unlit $f!\n"; + open(INF, "../utils/unlit/unlit $f - |") || die "Couldn't unlit $f!\n"; } else { open(INF, "< $f") || die "Couldn't open $f!\n"; }