comparison gnulib-tool @ 7350:6c5c8c8b93a3

Don't include the config-h module in megatestdir.
author Bruno Haible <bruno@clisp.org>
date Fri, 22 Sep 2006 15:43:18 +0000
parents 7d0519d18212
children a7abebdb07f4
comparison
equal deleted inserted replaced
7349:da9a7fb22bf8 7350:6c5c8c8b93a3
20 # This program is meant for authors or maintainers which want to import 20 # This program is meant for authors or maintainers which want to import
21 # modules from gnulib into their packages. 21 # modules from gnulib into their packages.
22 22
23 progname=$0 23 progname=$0
24 package=gnulib 24 package=gnulib
25 cvsdatestamp='$Date: 2006-09-22 12:47:54 $' 25 cvsdatestamp='$Date: 2006-09-22 15:43:18 $'
26 last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'` 26 last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
27 version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'` 27 version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
28 nl=' 28 nl='
29 ' 29 '
30 30
2380 for onemodule in $allmodules; do 2380 for onemodule in $allmodules; do
2381 func_create_testdir "$megatestdir/$onemodule" $onemodule 2381 func_create_testdir "$megatestdir/$onemodule" $onemodule
2382 func_append megasubdirs "$onemodule " 2382 func_append megasubdirs "$onemodule "
2383 done 2383 done
2384 # Then, all modules all together. 2384 # Then, all modules all together.
2385 # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
2385 # Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME. 2386 # Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME.
2386 allmodules=`for m in $allmodules; do if test $m != fnmatch-posix; then echo $m; fi; done` 2387 allmodules=`for m in $allmodules; do if test $m != config-h && test $m != fnmatch-posix; then echo $m; fi; done`
2387 func_create_testdir "$megatestdir/ALL" "$allmodules" 2388 func_create_testdir "$megatestdir/ALL" "$allmodules"
2388 func_append megasubdirs "ALL" 2389 func_append megasubdirs "ALL"
2389 2390
2390 # Create Makefile.am. 2391 # Create Makefile.am.
2391 (echo "## Process this file with automake to produce Makefile.in." 2392 (echo "## Process this file with automake to produce Makefile.in."