* Makefile.am (@DIST_MAKEFILE_LIST@): work around Ultrix /bin/sh bug

* tests/nomode.test (must specify a MODE): ditto
Reported by Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* THANKS: Added Rainer Orth
This commit is contained in:
Alexandre Oliva 1999-01-20 22:12:51 +00:00 committed by Alexandre Oliva
parent f42bb6c21f
commit 96f5eb0883
4 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,10 @@
1999-01-20 Alexandre Oliva <oliva@dcc.unicamp.br>
* Makefile.am (@DIST_MAKEFILE_LIST@): work around Ultrix /bin/sh bug
* tests/nomode.test (must specify a MODE): ditto
Reported by Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* THANKS: Added Rainer Orth
1999-01-20 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* ltconfig.in: No known version of Solaris 2 hardcoded -L paths.

View File

@ -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

1
THANKS
View File

@ -32,6 +32,7 @@ Mark Kettenis <kettenis@phys.uva.nl>
Mimi Burbank <mimi@scri.fsu.edu>
Oliver Guntermann <og@informatik.uni-hannover.de>
Raffaele Sena <raff@aromatic.com>
Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
Ron O'Hara <rono@sentuny.com.au>
Sebastian Wilhelmi <wilhelmi@ira.uka.de>
Stephan Kulow <coolo@kde.org>

View File

@ -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