1
1

build: add "-verok" flag to ignore autotools version check and continue anyway.

This commit was SVN r32654.
Этот коммит содержится в:
Mike Dubman 2014-08-31 07:27:34 +00:00
родитель f5905c7111
Коммит 4497dada00

10
contrib/dist/make_dist_tarball поставляемый
Просмотреть файл

@ -46,6 +46,7 @@ DISTCHECK_MAKE_FLAGS=-j4
# tarballs; but higher-than-expected versions are ok for # tarballs; but higher-than-expected versions are ok for
# non-distribution tarballs. # non-distribution tarballs.
dirty_ok=0 dirty_ok=0
gnu_version_ignore=0
dist_target=distcheck dist_target=distcheck
distcheck_flags="AM_MAKEFLAGS=$DISTCHECK_MAKE_FLAGS" distcheck_flags="AM_MAKEFLAGS=$DISTCHECK_MAKE_FLAGS"
if test "`basename $0`" = "make_tarball"; then if test "`basename $0`" = "make_tarball"; then
@ -74,6 +75,8 @@ while test "$1" != ""; do
-distdir) distdir=$2; shift ;; -distdir) distdir=$2; shift ;;
--distdir) distdir=$2; shift ;; --distdir) distdir=$2; shift ;;
--dirtyok) dirty_ok=1; shift ;; --dirtyok) dirty_ok=1; shift ;;
--verok) gnu_version_ignore=1;;
-verok) gnu_version_ignore=1;;
*) *)
cat <<EOF cat <<EOF
Unrecognized argument: $1 Unrecognized argument: $1
@ -85,6 +88,7 @@ Valid arguments:
--autogen-args Arguments to pass to autogen --autogen-args Arguments to pass to autogen
--distdir Move the tarball(s) to this directory when done --distdir Move the tarball(s) to this directory when done
--dirtyok Ok if the source tree is dirty --dirtyok Ok if the source tree is dirty
--verok Ignore result of autotools version checking
EOF EOF
exit 1 exit 1
;; ;;
@ -169,7 +173,9 @@ Either change this script to match the found version, or install
the correct version of the tools. the correct version of the tools.
---------------------------------------------------------------------- ----------------------------------------------------------------------
EOF EOF
if test "$gnu_version_ignore" = "0"; then
exit 1 exit 1
fi
elif test "$result" = "high"; then elif test "$result" = "high"; then
if test "$highok" = "0"; then if test "$highok" = "0"; then
@ -190,7 +196,9 @@ Either change this script to match the found version, or install
the correct version of the tools. the correct version of the tools.
---------------------------------------------------------------------- ----------------------------------------------------------------------
EOF EOF
if test "$gnu_version_ignore" = "0"; then
exit 1 exit 1
fi
else else
cat <<EOF cat <<EOF
---------------------------------------------------------------------- ----------------------------------------------------------------------
@ -230,8 +238,10 @@ Either change this script to match the found version, or install
the correct version of the tools. the correct version of the tools.
---------------------------------------------------------------------- ----------------------------------------------------------------------
EOF EOF
if test "$gnu_version_ignore" = "0"; then
exit 1 exit 1
fi fi
fi
} }