From 3d2623c437624dd306fb8b97a0a173ca02ef1464 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Sat, 14 Jul 2001 19:30:42 +0000 Subject: [PATCH] * lib/missing (makeinfo): Redirect stdout and stderr outside subshell. From Alexandre Oliva. --- ChangeLog | 5 +++++ TODO | 7 +++++++ lib/missing | 2 +- missing | 2 +- 4 files changed, 14 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 57527e67..11f1a078 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-07-14 Tom Tromey + + * lib/missing (makeinfo): Redirect stdout and stderr outside + subshell. From Alexandre Oliva. + 2001-07-14 Akim Demaille * automake.in ($obsolete_rx): No need for `\b(foo\b|\bbar)\b', diff --git a/TODO b/TODO index 98929254..459616ec 100644 --- 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) diff --git a/lib/missing b/lib/missing index 3aef1fb1..0a7fb5a2 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 diff --git a/missing b/missing index 3aef1fb1..0a7fb5a2 100755 --- 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 -- 2.43.5