You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ji...@apache.org on 2019/10/20 16:16:33 UTC

svn commit: r1868659 - /openoffice/devtools/build-scripts/4.2.0-Dev1/unxmacos/build_aoo64bit_on_macos.sh

Author: jim
Date: Sun Oct 20 16:16:33 2019
New Revision: 1868659

URL: http://svn.apache.org/viewvc?rev=1868659&view=rev
Log:
Some build script update

Modified:
    openoffice/devtools/build-scripts/4.2.0-Dev1/unxmacos/build_aoo64bit_on_macos.sh

Modified: openoffice/devtools/build-scripts/4.2.0-Dev1/unxmacos/build_aoo64bit_on_macos.sh
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.2.0-Dev1/unxmacos/build_aoo64bit_on_macos.sh?rev=1868659&r1=1868658&r2=1868659&view=diff
==============================================================================
--- openoffice/devtools/build-scripts/4.2.0-Dev1/unxmacos/build_aoo64bit_on_macos.sh (original)
+++ openoffice/devtools/build-scripts/4.2.0-Dev1/unxmacos/build_aoo64bit_on_macos.sh Sun Oct 20 16:16:33 2019
@@ -57,8 +57,9 @@ AOO_BUILD_TYPE=
 AOO_BUILD_VERSION=
 AOO_BUILD_BETA=
 AOO_BUILD_DEV=
+AOO_BUILD_ALL="yes"
 
-AOPTS=`getopt -o vsjdba:j:m: --long verbose,skip-config,just-config,dev,beta,ant-version:,java-version:,macos-target: -n 'parse-options' -- "$@"`
+AOPTS=`getopt -o vsjdbqa:j:m: --long verbose,skip-config,just-config,dev,beta,quick,ant-version:,java-version:,macos-target: -n 'parse-options' -- "$@"`
 if [ $? != 0 ] ; then echo "Failed parsing options." >&2 ; exit 1 ; fi
 #echo "$AOPTS"
 eval set -- "$AOPTS"
@@ -68,6 +69,7 @@ while true; do
     -v | --verbose ) AOO_VERBOSE_BUILD="--enable-verbose"; shift ;;
     -s | --skip-config ) AOO_SKIP_CONFIG="yes"; shift ;;
     -j | --just-config ) AOO_JUST_CONFIG="yes"; shift ;;
+    -q | --quick ) AOO_BUILD_ALL="no"; shift ;;
     -a | --ant-version ) AOO_ANT_VERSION=$2; shift 2 ;;
     -j | --java-version ) AOO_JAVA_VERSION=$2; shift 2 ;;
     -m | --macos-target ) AOO_MACOS_TARGET=$2; shift 2 ;;
@@ -171,7 +173,7 @@ elif [ "$AOO_BUILD_DEV" = "yes" ]; then
     dmake -P5 openofficedev  || exit 1
 	dmake -P5 sdkoodev_en-US || exit 1
 	dmake -P5 ooodevlanguagepack || exit 1
-else
+elif [ "$AOO_BUILD_ALL" = "yes" ]; then
 	dmake -P5 ooolanguagepack || exit 1
 	dmake -P5 sdkoo_en-US || exit 1 
 fi