]> sourceware.org Git - automake.git/commitdiff
* lib/missing (makeinfo): Redirect stdout and stderr outside
authorTom Tromey <tromey@redhat.com>
Sat, 14 Jul 2001 19:30:42 +0000 (19:30 +0000)
committerTom Tromey <tromey@redhat.com>
Sat, 14 Jul 2001 19:30:42 +0000 (19:30 +0000)
subshell.  From Alexandre Oliva.

ChangeLog
TODO
lib/missing
missing

index 57527e67e12313d0e5efb71eadbf5faa99ebb595..11f1a078296e190b4fc1a93cf4d24efcdf61c0ee 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-07-14  Tom Tromey  <tromey@redhat.com>
+
+       * lib/missing (makeinfo): Redirect stdout and stderr outside
+       subshell.  From Alexandre Oliva.
+
 2001-07-14  Akim Demaille  <akim@epita.fr>
 
        * automake.in ($obsolete_rx): No need for `\b(foo\b|\bbar)\b',
diff --git a/TODO b/TODO
index 9892925476faee4729f249f19cad026c18e2e2c6..459616ecd201a838523440bbc9f140ac3cb712f3 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,3 +1,10 @@
+check should depend on all
+  from ben elliston
+
+refactor handle_source_transform and handle_single_transform_list
+we suffer combinatorial explosion here, but there's no need to
+we could transform source variables one at a time
+
 the new YFLAGS code doesn't correctly handle srcdir
 
 allow foo_NAME to rename an object (library or program)
index 3aef1fb1d23c2d6c85a0133ebf62f070ecc09cc0..0a7fb5a2acec32d1ef949e5e7e7fb11460c5e021 100755 (executable)
@@ -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
diff --git a/missing b/missing
index 3aef1fb1d23c2d6c85a0133ebf62f070ecc09cc0..0a7fb5a2acec32d1ef949e5e7e7fb11460c5e021 100755 (executable)
--- a/missing
+++ b/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
This page took 0.106694 seconds and 5 git commands to generate.