summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2013-07-30 13:16:16 -0400
committerDan Winship <danw@gnome.org>2013-07-30 13:16:16 -0400
commitcfa4117ebb6a928ef3332f5c606bbfbf4b7159d7 (patch)
tree6c4391cc7092bcdbb27340be498bee24462875ed
parente0f37dce453866ffaea48b982326666afbd64dd8 (diff)
downloadNetworkManager-cfa4117ebb6a928ef3332f5c606bbfbf4b7159d7.tar.gz
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.
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
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