]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* Makefile.am (@DIST_MAKEFILE_LIST@): work around Ultrix /bin/sh bug
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Wed, 20 Jan 1999 22:12:51 +0000 (22:12 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Wed, 20 Jan 1999 22:12:51 +0000 (22:12 +0000)
* tests/nomode.test (must specify a MODE): ditto
Reported by Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* THANKS: Added Rainer Orth

ChangeLog
Makefile.am
THANKS
tests/nomode.test

index d30609ba0c76641f558d5fe9e788f858faa0640f..1f75775dcfa4d7c05b07a0bc5b315bf41e905e9d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 684b5c113ecb31f837eb05f37573523ac31e949d..161d14b11311ac205e18d79d3db494a7f0e3f82c 100644 (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
diff --git a/THANKS b/THANKS
index 302e509d734e976db80f94cf37669479dc2a12a6..ca618fb4113fd19c26c9832537ade26854421654 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -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>
index ddc026dec584951d2688cfc4c59ef5101301b4f0..55c9cd246f968fbbded04812dcaec09781daa690 100755 (executable)
@@ -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