Tag
Hash :
6765f660
Author :
Date :
2001-10-28T14:00:28
* tests/acoutnoq.test, tests/acoutput.test, tests/acoutqnl.test, * tests/acouttbs.test, tests/auxdir.test, tests/colon.test, * tests/colon2.test, tests/colon3.test, tests/colon4.test, * tests/colon5.test, tests/colon6.test, tests/colon7.test, * tests/conf2.test, tests/config.test, tests/depcomp.test, * tests/depcomp2.test, tests/discover.test, tests/fpinst2.test, * tests/fpinstall.test, tests/ldadd.test, tests/libobj7.test, * tests/libobj8.test, tests/output.test, tests/output2.test, * tests/output3.test, tests/output4.test, tests/output5.test, * tests/pr2.test, tests/remake.test, tests/remake2.test, * tests/remake3.test, tests/scripts.test, tests/stamph.test, * tests/subdir.test, tests/subdir2.test, tests/subdir4.test, * tests/tagsub.test, tests/texinfo8.test: Remove PACKAGE and VERSION assignments.
#! /bin/sh
# Check to make sure incorrect LDADD usage is diagnosed.
. $srcdir/defs || exit 1
cat > configure.in << 'END'
AC_PROG_CC
AC_PROG_LIBTOOL
AC_OUTPUT(Makefile)
LTLIBOBJS="$LTLIBOBJS q.o"
LIBOBJS="$LIBOBJS q.o"
AC_SUBST(LTLIBOBJS)
END
cat > Makefile.am << 'END'
lib_LTLIBRARIES = libtu.la
libtu_la_SOURCES = foo.c
libtu_la_LDADD = @LTLIBOBJS@
END
: > ltconfig
: > ltmain.sh
: > config.guess
: > config.sub
: > q.c
$ACLOCAL || exit 1
$AUTOMAKE && exit 1
exit 0