diff options
author | Dan Winship <danw@gnome.org> | 2013-07-30 13:16:16 -0400 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2013-07-30 13:16:16 -0400 |
commit | cfa4117ebb6a928ef3332f5c606bbfbf4b7159d7 (patch) | |
tree | 6c4391cc7092bcdbb27340be498bee24462875ed /autogen.sh | |
parent | e0f37dce453866ffaea48b982326666afbd64dd8 (diff) | |
download | NetworkManager-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.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 2 |
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 |