From a06722e2a451e33c8e373a1c9a57b7f588467bca Mon Sep 17 00:00:00 2001 From: Norman Walsh Date: Thu, 13 Jun 2002 14:59:30 +0000 Subject: [PATCH] Avoid recursion on my system --- cvstools/untidy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cvstools/untidy b/cvstools/untidy index 196d58a30..944a31c54 100755 --- a/cvstools/untidy +++ b/cvstools/untidy @@ -5,7 +5,7 @@ my $opts = join(" ", @ARGV); my $content = ""; -open (F, "tidy $opts $filename |"); +open (F, "/usr/bin/tidy $opts $filename |"); while () { $content .= $_; } -- 2.50.1