From: Alexandre Oliva Date: Wed, 20 Jan 1999 22:12:51 +0000 (+0000) Subject: * Makefile.am (@DIST_MAKEFILE_LIST@): work around Ultrix /bin/sh bug X-Git-Tag: ild-branchpoint~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96f5eb0883f9fbe4f9176881dc832f183d00dcb7;p=thirdparty%2Flibtool.git * Makefile.am (@DIST_MAKEFILE_LIST@): work around Ultrix /bin/sh bug * tests/nomode.test (must specify a MODE): ditto Reported by Rainer Orth * THANKS: Added Rainer Orth --- diff --git a/ChangeLog b/ChangeLog index d30609ba0..1f75775dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +1999-01-20 Alexandre Oliva + + * Makefile.am (@DIST_MAKEFILE_LIST@): work around Ultrix /bin/sh bug + * tests/nomode.test (must specify a MODE): ditto + Reported by Rainer Orth + * THANKS: Added Rainer Orth + 1999-01-20 Rainer Orth * ltconfig.in: No known version of Solaris 2 hardcoded -L paths. diff --git a/Makefile.am b/Makefile.am index 684b5c113..161d14b11 100644 --- a/Makefile.am +++ b/Makefile.am @@ -75,7 +75,7 @@ configure-subdirs distdir: $(DIST_MAKEFILE_LIST) @DIST_MAKEFILE_LIST@: dir=`echo $@ | sed 's,^[^/]*$$,.,;s,/[^/]*$$,,'`; \ test -d $$dir || mkdir $$dir || exit 1; \ - abs_srcdir=`cd $(top_srcdir) >/dev/null && pwd`; \ + abs_srcdir=`cd $(top_srcdir) && pwd`; \ (cd $$dir && $$abs_srcdir/$$dir/configure) || exit 1 # Create and install libltdl.tar.gz diff --git a/THANKS b/THANKS index 302e509d7..ca618fb41 100644 --- a/THANKS +++ b/THANKS @@ -32,6 +32,7 @@ Mark Kettenis Mimi Burbank Oliver Guntermann Raffaele Sena +Rainer Orth Ron O'Hara Sebastian Wilhelmi Stephan Kulow diff --git a/tests/nomode.test b/tests/nomode.test index ddc026dec..55c9cd246 100755 --- a/tests/nomode.test +++ b/tests/nomode.test @@ -17,7 +17,8 @@ else status=1 fi -if $libtool 2>&1 | grep 'you must specify a MODE' >/dev/null; then : +# The emoticon below works around a nasty bug in Ultrix /bin/sh +if ($libtool 2>&1; :) | grep 'you must specify a MODE' >/dev/null; then : else echo "invalid error when no mode is specified" status=1