From: Carl Worth Date: Tue, 6 Apr 2010 19:39:29 +0000 (-0700) Subject: configure: Add stub support for --build=-- option. X-Git-Tag: debian-0.1-1~17 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=a3c9dfe4fae48f6107ef78516f7ab36396ca9f3e configure: Add stub support for --build=-- option. I'm not sure that this option would actually be useful for anything, but debhelper at least expects our configure script to support it. So we'll accept it and ignore it. --- diff --git a/configure b/configure index 648d8771..65a533f1 100755 --- a/configure +++ b/configure @@ -69,6 +69,11 @@ Fine tuning of some installation directories is available: --libdir=DIR Install libraries in LIBDIR [PREFIX/lib] +Additional options are accepted for compatibility with other +configure-script calling conventions, but don't do anything yet: + + --build=-- Currently ignored + EOF } @@ -81,6 +86,22 @@ for option; do PREFIX="${option#*=}" elif [ "${option%%=*}" = '--libdir' ] ; then LIBDIR="${option#*=}" + elif [ "${option%%=*}" = '--build' ] ; then + build_option="${option#*=}" + case ${build_option} in + *-*-*) ;; + *) + echo "Unrecognized value for --build option: ${build_option}" + echo "Should be: --" + echo "See:" + echo " $0 --help" + echo "" + exit 1 + esac + build_cpu=${build_option%%-*} + build_option=${build_option#*-} + build_vendor=${build_option%%-*} + build_os=${build_option#*-} else echo "Unrecognized option: ${option}." echo "See:"