autogen.sh: pass --enable-static=libndp

jhbuild (in the suggested configuration) passes --disable-static, but
we need static libndp at least. So tweak autogen.sh to ensure that
happens.
This commit is contained in:
Dan Winship 2013-07-30 13:16:16 -04:00
parent e0f37dce45
commit cfa4117ebb

View file

@ -35,5 +35,5 @@ AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose
cd $olddir
if test -z "$NOCONFIGURE"; then
exec $srcdir/configure --enable-maintainer-mode "$@"
exec $srcdir/configure --enable-maintainer-mode "$@" --enable-static=libndp
fi