(svn r9696) -Fix: --without-application-bundle did not disable the custom language/second data directory stuff that is used for application bundles.

This commit is contained in:
rubidium 2007-04-20 19:41:19 +00:00
parent 3df2656633
commit ba5b663e1f

View File

@ -237,9 +237,9 @@ detect_params() {
--with-osx-sysroot) with_osx_sysroot="2";; --with-osx-sysroot) with_osx_sysroot="2";;
--with-osx-sysroot=*) with_osx_sysroot="$optarg";; --with-osx-sysroot=*) with_osx_sysroot="$optarg";;
--without-application-bundle) with_applicant_bundle="0";; --without-application-bundle) with_application_bundle="0";;
--with-application-bundle) with_applicant_bundle="1";; --with-application-bundle) with_application_bundle="1";;
--with-application-bundle=*) with_applicant_bundle="$optarg";; --with-application-bundle=*) with_application_bundle="$optarg";;
CC=* | --CC=*) CC="$optarg";; CC=* | --CC=*) CC="$optarg";;
CXX=* | --CXX=*) CXX="$optarg";; CXX=* | --CXX=*) CXX="$optarg";;