From: Norman Walsh Date: Thu, 13 Jun 2002 14:59:30 +0000 (+0000) Subject: Avoid recursion on my system X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=36c4414425b3e87bbefca3eaaf21ef4ea399ea14;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 .= $_; }