From cfa4117ebb6a928ef3332f5c606bbfbf4b7159d7 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Tue, 30 Jul 2013 13:16:16 -0400 Subject: [PATCH] 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. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 1b56207af9..9e3d3d3cf7 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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