automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Patch: missing --run makeinfo


From: Tom Tromey
Subject: Re: Patch: missing --run makeinfo
Date: 14 Jul 2001 13:54:00 -0600

>>>>> "Alexandre" == Alexandre Oliva <address@hidden> writes:

Alexandre> Just one more nit: is the point of redirecting stdout and
Alexandre> stderr of makeinfo to not get an error in case makeinfo
Alexandre> isn't available?  If this is the case, the redirections
Alexandre> should go outside the parentheses.

Thanks.  I'm checking this in.

2001-07-14  Tom Tromey  <address@hidden>

        * lib/missing (makeinfo): Redirect stdout and stderr outside
        subshell.  From Alexandre Oliva.

Tom

Index: lib/missing
===================================================================
RCS file: /cvs/automake/automake/lib/missing,v
retrieving revision 1.16
diff -u -r1.16 missing
--- lib/missing 2001/07/04 15:29:37 1.16
+++ lib/missing 2001/07/14 19:29:51
@@ -209,7 +209,7 @@
     ;;
 
   makeinfo)
-    if test -z "$run" && (makeinfo --version > /dev/null 2>&1); then
+    if test -z "$run" && (makeinfo --version) > /dev/null 2>&1; then
        # We have makeinfo, but it failed.
        exit 1
     fi



reply via email to

[Prev in Thread] Current Thread [Next in Thread]