diff options
author | Dan Williams <dcbw@redhat.com> | 2011-04-27 14:47:00 -0500 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2011-04-27 14:47:00 -0500 |
commit | c96db0c91b8c86f1c60e463f1ae133bef5cc2103 (patch) | |
tree | 6179ec77b728177354330644e67e6bd9277655fe /autogen.sh | |
parent | 383bf8c9a3409fda655b18ba6ada503367b5d332 (diff) |
Revert "build: don't require intltool unless --with-polkit=yes"
This reverts commit 0299cf51c4cf587f79771fe219c6154bf0d0139e.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 14 |
1 files changed, 2 insertions, 12 deletions
@@ -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 $@ ) |