(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
1 changed files with 3 additions and 3 deletions

View File

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