+2005-10-16 Bruno Haible <bruno@clisp.org>
+
+ * gnulib-tool (func_emit_tests_Makefile_am): Also define
+ TESTS_ENVIRONMENT, so that individual tests can augment it.
+
+ * gnulib-tool (func_create_testdir): Use an intermediate target for
+ building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
+ macros, like $(ALLOCA_H), which cannot be passed through the command
+ line.
+
2005-10-15 Simon Josefsson <jas@extundo.com>
* modules/rijndael-tests: New file.
progname=$0
package=gnulib
-cvsdatestamp='$Date: 2005-09-20 11:48:17 $'
+cvsdatestamp='$Date: 2005-10-17 10:27:37 $'
last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
echo "ACLOCAL_AMFLAGS = -I ${testsbase_inverse}/${m4base}"
echo
echo "TESTS ="
+ echo "TESTS_ENVIRONMENT ="
echo "noinst_PROGRAMS ="
echo "EXTRA_DIST ="
echo "BUILT_SOURCES ="
cd lib
built_sources=`grep '^BUILT_SOURCES *=' Makefile.in | sed -e 's/^BUILT_SOURCES *=//'`
if test -n "$built_sources"; then
- make $built_sources
+ echo 'built_sources: $(BUILT_SOURCES)' >> Makefile
+ make built_sources
fi
cd ..
make distclean