From: Norman Walsh Date: Thu, 13 Jun 2002 14:59:30 +0000 (+0000) Subject: Avoid recursion on my system X-Git-Tag: release/1.79.1~6^2~5556 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a06722e2a451e33c8e373a1c9a57b7f588467bca;p=docbook-dsssl Avoid recursion on my system --- 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 .= $_; }