summaryrefslogtreecommitdiff
path: root/utils/count_lines
diff options
context:
space:
mode:
authorSimon Peyton Jones <simonpj@microsoft.com>2013-11-15 11:24:46 +0000
committerSimon Peyton Jones <simonpj@microsoft.com>2013-11-15 11:24:46 +0000
commit699dc5402a0b6a703daf648953ff560376714207 (patch)
tree01adf9a610c31a9c527e9a3bf5b8f76e4a5a7c75 /utils/count_lines
parenteb8fb434ff5e962a54247cacc5d3340972d5daf4 (diff)
downloadhaskell-699dc5402a0b6a703daf648953ff560376714207.tar.gz
Fix the unlit path in count_lines
Diffstat (limited to 'utils/count_lines')
-rw-r--r--utils/count_lines/count_lines.lprl2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/count_lines/count_lines.lprl b/utils/count_lines/count_lines.lprl
index bfaad51804..72b441384e 100644
--- a/utils/count_lines/count_lines.lprl
+++ b/utils/count_lines/count_lines.lprl
@@ -14,7 +14,7 @@ my $binPath = $FindBin::Bin;
foreach $f ( @ARGV ) {
if ( $f =~ /\.lhs$/ ) {
- open(INF, "$binPath/../../../inplace/lib/unlit $f - |") || die "Couldn't unlit $f!\n";
+ open(INF, "$binPath/../../inplace/lib/unlit $f - |") || die "Couldn't unlit $f!\n";
} else {
open(INF, "< $f") || die "Couldn't open $f!\n";
}