summaryrefslogtreecommitdiff
path: root/lib/missing
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2001-07-14 19:30:42 +0000
committerTom Tromey <tromey@redhat.com>2001-07-14 19:30:42 +0000
commit809c236c1a78bd233572c6e2083e3a735f8a3a85 (patch)
tree0f934109b9c76857ecc155cdefcfece430f9d3a3 /lib/missing
parent42152c209580298f58772e98c9d8addef1045492 (diff)
downloadautomake-809c236c1a78bd233572c6e2083e3a735f8a3a85.tar.gz
* lib/missing (makeinfo): Redirect stdout and stderr outside
subshell. From Alexandre Oliva.
Diffstat (limited to 'lib/missing')
-rwxr-xr-xlib/missing2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/missing b/lib/missing
index 3aef1fb1d..0a7fb5a2a 100755
--- a/lib/missing
+++ b/lib/missing
@@ -209,7 +209,7 @@ WARNING: \`$1' is missing on your system. You should only need it if
;;
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