2005-10-17 Stepan Kasal * gnulib-tool (func_create_testdir): Omit the clumsy check whether BUILT_SOURCES in nonempty. Index: gnulib-tool =================================================================== RCS file: /cvsroot/gnulib/gnulib/gnulib-tool,v retrieving revision 1.86 diff -u -r1.86 gnulib-tool --- gnulib-tool 17 Oct 2005 10:27:37 -0000 1.86 +++ gnulib-tool 17 Oct 2005 15:26:39 -0000 @@ -1516,11 +1516,8 @@ (cd "$testdir" ./configure cd lib - built_sources=`grep '^BUILT_SOURCES *=' Makefile.in | sed -e 's/^BUILT_SOURCES *=//'` - if test -n "$built_sources"; then - echo 'built_sources: $(BUILT_SOURCES)' >> Makefile - make built_sources - fi + echo 'built_sources: $(BUILT_SOURCES)' >> Makefile + make built_sources cd .. make distclean )