From: Gordon Matzigkeit Date: Thu, 19 Jun 1997 20:37:00 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release-1-0a~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df0776ddbf4c2c662b6f6f76eed1878b6f29c6aa;p=thirdparty%2Flibtool.git *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index 8146fa5ac..6b36c6898 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Jun 19 14:24:06 1997 Gordon Matzigkeit + + * ltmain.sh.in (install): Add a missing `test' command. Reported + by Joel Weber. + Sat Jun 14 21:01:03 1997 Gordon Matzigkeit * ltmain.sh.in (link): Create invalid libtool objects when partial diff --git a/configure.in b/configure.in index 53d19afe9..fbf99dbae 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to create configure. AC_INIT(ltmain.sh.in) -AM_INIT_AUTOMAKE(libtool,0.9h) +AM_INIT_AUTOMAKE(libtool,0.9i) pkgdatadir='${datadir}/libtool' AC_SUBST(pkgdatadir) diff --git a/doc/platforms.texi b/doc/platforms.texi index baf3af914..a60a4f76c 100644 --- a/doc/platforms.texi +++ b/doc/platforms.texi @@ -6,10 +6,11 @@ alpha-dec-osf3.2 cc 0.8 ok alpha-dec-osf3.2 gcc 0.8 ok alpha-dec-osf4.0 cc 0.9 ok alpha-dec-osf4.0 gcc 0.9 ok -alpha-unknown-linux gcc 0.9d ok +alpha-unknown-linux gcc 0.9h ok hppa1.1-hp-hpux9.05 cc 0.8 ok hppa1.1-hp-hpux9.05 gcc 0.8 ok -hppa1.1-hp-hpux10.10 cc 0.8 ok +hppa1.1-hp-hpux10.10 cc 0.9h ok +hppa1.1-hp-hpux10.10 gcc 0.9h ok i386-unknown-freebsd2.1.5 gcc 0.5 ok i386-unknown-gnu0.0 gcc 0.5 ok i386-unknown-netbsd1.2 gcc 0.9g ok @@ -21,17 +22,17 @@ mips-sgi-irix6.2 cc -32 0.9 ok mips-sgi-irix6.2 cc -n32 0.9 ok powerpc-ibm-aix4.1.4.0 xlc 0.9g ok powerpc-ibm-aix4.1.4.0 gcc 0.9g ok -rs6000-ibm-aix3.2.5 xlc 0.9e ok -rs6000-ibm-aix3.2.5 gcc 0.9e ok* +rs6000-ibm-aix3.2.5 xlc 0.9h ok +rs6000-ibm-aix3.2.5 gcc 0.9h ok* rs6000-ibm-aix4.1.4.0 xlc 0.9g ok rs6000-ibm-aix4.1.4.0 gcc 0.9e ok -sparc-sun-linux2.1.23 gcc 0.9 ok -sparc-sun-sunos4.1.3_U1 cc 0.9 ok -sparc-sun-sunos4.1.3_U1 gcc 0.9 ok +sparc-sun-linux2.1.23 gcc 0.9h ok +sparc-sun-sunos4.1.3 cc 0.9h ok +sparc-sun-sunos4.1.3 gcc 0.9h ok sparc-sun-solaris2.4 cc 0.9 ok sparc-sun-solaris2.4 gcc 0.9 ok sparc-sun-solaris2.5 cc 0.9 ok -sparc-sun-solaris2.5 gcc 0.9g ok +sparc-sun-solaris2.5 gcc 0.9h ok -------------------------------------------------------- * Libtool will not build shared libraries because of a bug in diff --git a/ltmain.sh.in b/ltmain.sh.in index 801919646..ec4b9db77 100644 --- a/ltmain.sh.in +++ b/ltmain.sh.in @@ -1188,7 +1188,7 @@ EOF # Not a directory, so check to see that there is only one file specified. set dummy $files - if $# -gt 2; then + if test $# -gt 2; then echo "$progname: \`$dest' is not a directory" 1>&2 echo "$help" 1>&2 exit 1 diff --git a/tests/ChangeLog b/tests/ChangeLog index 80d32f77b..19a78b8d9 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,10 @@ +Thu Jun 19 14:31:49 1997 Gordon Matzigkeit + + * demo-conf.test: Always remove the local config.cache, but run + `make distclean' only if the Makefile exists. Otherwise, the demo + directory is not cleaned up if a user uses their own config.cache. + Reported by Joel Weber. + Wed Apr 16 19:21:00 1997 Gordon Matzigkeit * hardcode.test: AIX also has arbitrary limits on the line length diff --git a/tests/demo-conf.test b/tests/demo-conf.test index d702fd501..2c18e7b8e 100755 --- a/tests/demo-conf.test +++ b/tests/demo-conf.test @@ -17,10 +17,11 @@ test -d ../demo || mkdir ../demo cd ../demo || exit 1 # Possibly clean up the distribution. -if test -f config.cache; then +if test -f Makefile; then echo "= Running $make distclean in ../demo" - $make distclean || rm -f config.cache + $make distclean fi +rm -f config.cache # Configure the demonstration. echo "= Configuring in ../demo (prefix=$prefix)"