diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2008-10-14 14:24:30 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2008-10-14 14:24:30 +0300 |
commit | 9fe51e6e2844a5b1d7d4d4116f15449d0f327b35 (patch) | |
tree | 2c76c4913bf6b1d4f5b8fa463193a9c11675194f /autogen.sh | |
parent | 9397bb61baeebcafda97c61c81dfbc1c4af96c17 (diff) | |
download | librpm-tizen-9fe51e6e2844a5b1d7d4d4116f15449d0f327b35.tar.gz librpm-tizen-9fe51e6e2844a5b1d7d4d4116f15449d0f327b35.tar.bz2 librpm-tizen-9fe51e6e2844a5b1d7d4d4116f15449d0f327b35.zip |
Rip silly "usage" message from autogen
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/autogen.sh b/autogen.sh index 4c9cd6126..e685f6477 100755 --- a/autogen.sh +++ b/autogen.sh @@ -3,19 +3,6 @@ export CFLAGS export LDFLAGS -LTV="libtoolize (GNU libtool) 1.5.22" -ACV="autoconf (GNU Autoconf) 2.61" -AMV="automake (GNU automake) 1.10" -USAGE=" -This script documents the versions of the tools I'm using to build rpm: - libtool-1.5.22 - autoconf-2.61 - automake-1.10 -Simply edit this script to change the libtool/autoconf/automake versions -checked if you need to, as rpm should build (and has built) with all -recent versions of libtool/autoconf/automake. -" - libtoolize=`which glibtoolize 2>/dev/null` case $libtoolize in /*) ;; @@ -26,17 +13,13 @@ case $libtoolize in esac esac -[ "`$libtoolize --version | head -1`" != "$LTV" ] && echo "$USAGE" # && exit 1 -[ "`autoconf --version | head -1`" != "$ACV" ] && echo "$USAGE" # && exit 1 -[ "`automake --version | head -1 | sed -e 's/1\.4[a-z]/1.4/'`" != "$AMV" ] && echo "$USAGE" # && exit 1 - myopts= if [ X"$@" = X -a "X`uname -s`" = "XDarwin" -a -d /opt/local ]; then export myopts="--prefix=/usr --disable-nls" export CPPFLAGS="-I${myprefix}/include" fi -libtoolize --copy --force +$libtoolize --copy --force autopoint --force aclocal autoheader |