diff options
author | Paul Nasrat <pnasrat@redhat.com> | 2007-02-16 16:26:41 +0000 |
---|---|---|
committer | Paul Nasrat <pnasrat@redhat.com> | 2007-02-16 16:26:41 +0000 |
commit | 04019761ac96654bb517f2972a3240ad74c69d58 (patch) | |
tree | 7e777ef9525fdaa86bad5cad246ab20c51285417 /autogen.sh | |
parent | 955ed0bace80c7ac4643b13fdc2d5e694472b1c7 (diff) | |
download | rpm-04019761ac96654bb517f2972a3240ad74c69d58.tar.gz |
Don't exit on differing autotools.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh index a60fdfe7a..8549642e4 100755 --- a/autogen.sh +++ b/autogen.sh @@ -26,8 +26,8 @@ case $libtoolize in esac esac -[ "`$libtoolize --version | head -1`" != "$LTV" ] && echo "$USAGE" && exit 1 -[ "`autoconf --version | head -1`" != "$ACV" ] && echo "$USAGE" && exit 1 +[ "`$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= |