~enlightenment-git/enlightenment-svn/e-modules-extra

2089 by pfritz
configure.in -> configure.ac
1
#!/bin/sh
2
3
for d in * ; do
2141 by cedric
Remove Evas list from all E-MODULES.
4
        if test "x$d" = "xscreenshot"; then continue ; fi
2089 by pfritz
configure.in -> configure.ac
5
	test -d "$d" || continue
6
	test -x "${d}/configure" || continue
2631 by quaker
do not run configure when packaging twice
7
	echo "CONFIGURE:  $d (no output = Makefile of $d exists, no need to run autogen)"
8
	test -f "${d}/Makefile" || (cd $d && ./configure "$@") || exit $?
2089 by pfritz
configure.in -> configure.ac
9
done
10
11
cp -p Makefile.in Makefile