From 0e435b703d10421eb9ece6a1a5e143ea2c02617f Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Fri, 21 May 2004 17:31:48 +0000 Subject: [PATCH] * tests/conflnk3.test: Isolate checking for working `test -e' into a subshell, to skip this test on broken /bin/sh of solaris. --- ChangeLog | 5 +++++ THANKS | 1 + tests/conflnk3.test | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index de8f2cc1..5ab53b5d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-05-21 Eric Blake (tiny change) + + * tests/conflnk3.test: Isolate checking for working `test -e' into + a subshell, to skip this test on broken /bin/sh of solaris. + 2004-05-17 Alexandre Duret-Lutz * m4/cond.m4 (AM_CONDITIONAL): Double-quote diagnostic. diff --git a/THANKS b/THANKS index dd255897..d1517501 100644 --- a/THANKS +++ b/THANKS @@ -61,6 +61,7 @@ Elmar Hoffmann elho@elho.net Elrond Elrond@Wunder-Nett.org Enrico Scholz enrico.scholz@informatik.tu-chemnitz.de Erez Zadok ezk@cs.columbia.edu +Eric Blake ebb9@byu.net Eric Magnien emagnien@club-internet.fr Eric Siegerman erics_97@pobox.com Eric Sunshine sunshine@sunshineco.com diff --git a/tests/conflnk3.test b/tests/conflnk3.test index a3b12986..25329ac3 100755 --- a/tests/conflnk3.test +++ b/tests/conflnk3.test @@ -28,7 +28,7 @@ set -e # Skip platforms where `test -e' does not work. (Note that Changing # all `test -e' into `test -h' will not work when AC_CONFIG_LINKS # copies or hardlinks files.) -test -e configure.in || exit 77 +(test -e configure.in) >/dev/null 2>&1 || exit 77 cat > Makefile.am << 'END' SUBDIRS = sdir -- 2.43.5