# HG changeset patch # User rubidium # Date 2007-04-20 19:41:19 # Node ID b16196c6ddecac21f6dc3fa3f4b688de50bb3e8c # Parent f52fc3c056fca71473cc3bf19d3c5fd7cde346fe (svn r9696) -Fix: --without-application-bundle did not disable the custom language/second data directory stuff that is used for application bundles. diff --git a/config.lib b/config.lib --- a/config.lib +++ b/config.lib @@ -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";;