mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-11-27 06:09:57 +08:00
*** empty log message ***
This commit is contained in:
parent
00fe02b93d
commit
df0776ddbf
@ -1,3 +1,8 @@
|
||||
Thu Jun 19 14:24:06 1997 Gordon Matzigkeit <gord@gnu.ai.mit.edu>
|
||||
|
||||
* ltmain.sh.in (install): Add a missing `test' command. Reported
|
||||
by Joel Weber.
|
||||
|
||||
Sat Jun 14 21:01:03 1997 Gordon Matzigkeit <gord@gnu.ai.mit.edu>
|
||||
|
||||
* ltmain.sh.in (link): Create invalid libtool objects when partial
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -1,3 +1,10 @@
|
||||
Thu Jun 19 14:31:49 1997 Gordon Matzigkeit <gord@gnu.ai.mit.edu>
|
||||
|
||||
* 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 <gord@gnu.ai.mit.edu>
|
||||
|
||||
* hardcode.test: AIX also has arbitrary limits on the line length
|
||||
|
@ -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)"
|
||||
|
Loading…
Reference in New Issue
Block a user