diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2009-11-26 09:46:48 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2009-11-26 09:46:48 +0200 |
commit | ae74744e65e4e3e83f51cfae5418e8d7e12b9857 (patch) | |
tree | 52ee9c49dafad4ccfa047bbc9a0ca7927641f330 /autogen.sh | |
parent | 2b41860984f0c4ebba5ebce93a18c9c0ca5e1065 (diff) | |
download | librpm-tizen-ae74744e65e4e3e83f51cfae5418e8d7e12b9857.tar.gz librpm-tizen-ae74744e65e4e3e83f51cfae5418e8d7e12b9857.tar.bz2 librpm-tizen-ae74744e65e4e3e83f51cfae5418e8d7e12b9857.zip |
Just use autoreconf in autogen.sh (ticket #109)
- instead of doing stuff by "hand" and getting it wrong, let autoreconf
worry about getting it right (if nothing else, we can then blame
autoreconf instead of ourselves ;)
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/autogen.sh b/autogen.sh index b23f45817..f7ea2cf32 100755 --- a/autogen.sh +++ b/autogen.sh @@ -4,22 +4,7 @@ export CPPFLAGS export CFLAGS export LDFLAGS -libtoolize=`which glibtoolize 2>/dev/null` -case $libtoolize in -/*) ;; -*) libtoolize=`which libtoolize 2>/dev/null` - case $libtoolize in - /*) ;; - *) libtoolize=libtoolize - esac -esac - -$libtoolize --copy --force -autopoint --force -aclocal -autoheader -automake -a -c -autoconf +autoreconf -i case "$1" in "--noconfigure") |