aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2011-04-27 14:47:00 -0500
committerDan Williams <dcbw@redhat.com>2011-04-27 14:47:00 -0500
commitc96db0c91b8c86f1c60e463f1ae133bef5cc2103 (patch)
tree6179ec77b728177354330644e67e6bd9277655fe /autogen.sh
parent383bf8c9a3409fda655b18ba6ada503367b5d332 (diff)
Revert "build: don't require intltool unless --with-polkit=yes"
This reverts commit 0299cf51c4cf587f79771fe219c6154bf0d0139e.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh14
1 files changed, 2 insertions, 12 deletions
diff --git a/autogen.sh b/autogen.sh
index 4164dd65..62614d94 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -13,19 +13,9 @@ PKG_NAME=ModemManager
exit 1
}
-polkit="false"
-args=""
-while (( "$#" )); do
- if [ "$1" == "--with-polkit=yes" ]; then
- polkit="true"
- fi
- args="$args $1"
- shift
-done
-
(cd $srcdir;
autoreconf --install --symlink &&
- ((eval "$polkit" && intltoolize --force) || true) &&
+ intltoolize --force &&
autoreconf &&
- ./configure --enable-maintainer-mode $args
+ ./configure --enable-maintainer-mode $@
)