Skip to content
Snippets Groups Projects
Commit 5a409d7b authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Ignore directories that don't have a configure.in.

Rev: src/modules/configure.in:1.6
parent 7d0edb2f
No related branches found
No related tags found
No related merge requests found
# $Id: configure.in,v 1.5 1998/03/28 14:54:09 grubba Exp $
# $Id: configure.in,v 1.6 2000/10/08 18:13:39 grubba Exp $
AC_INIT(dynamic_module_makefile.in)
AC_SET_MAKE
......@@ -11,6 +11,7 @@ for a in `(cd $srcdir ; echo *)`
do
if test "$a" != "CVS" -a "$a" != "RCS" ; then
if test -d "$srcdir/$a" ; then
if test -f "$srcdir/$a/configure.in"; then
yesno=`eval echo \\$with_$a`
if test "x${yesno-}" != xno ; then
dirs="$dirs $a"
......@@ -20,6 +21,7 @@ do
fi
fi
fi
fi
done
AC_SUBST(MODULE_LINKOPTS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment