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 2020/10/08 12:29:47 UTC

svn commit: r1882320 - in /openoffice/devtools/build-scripts: 4.1.8/unxmacos/build_aoo64bit_on_macos.sh 4.2.0-Dev2/unxmacos/build_aoo64bit_on_macos.sh

Author: jim
Date: Thu Oct  8 12:29:47 2020
New Revision: 1882320

URL: http://svn.apache.org/viewvc?rev=1882320&view=rev
Log:
Enable source builds

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

Modified: openoffice/devtools/build-scripts/4.1.8/unxmacos/build_aoo64bit_on_macos.sh
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.1.8/unxmacos/build_aoo64bit_on_macos.sh?rev=1882320&r1=1882319&r2=1882320&view=diff
==============================================================================
--- openoffice/devtools/build-scripts/4.1.8/unxmacos/build_aoo64bit_on_macos.sh (original)
+++ openoffice/devtools/build-scripts/4.1.8/unxmacos/build_aoo64bit_on_macos.sh Thu Oct  8 12:29:47 2020
@@ -67,6 +67,7 @@ AOO_BUILD_TYPE=
 AOO_BUILD_VERSION=
 AOO_BUILD_BETA=
 AOO_BUILD_DEV=
+AOO_BUILD_SRC=
 AOO_BUILD_ALL="yes"
 
 $(xcode-select -p | grep "Xcode7" -q)
@@ -75,7 +76,7 @@ if [ $? != 0 ]; then
     exit 1
 fi
 
-AOPTS=`getopt -o vsjdbqa:j:m: --long verbose,skip-config,just-config,dev,beta,quick,ant-version:,java-version:,macos-target: -n 'parse-options' -- "$@"`
+AOPTS=`getopt -o vsjdtbqa:j:m: --long verbose,skip-config,just-config,build-src,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"
@@ -86,6 +87,7 @@ while true; do
     -s | --skip-config ) AOO_SKIP_CONFIG="yes"; shift ;;
     -j | --just-config ) AOO_JUST_CONFIG="yes"; shift ;;
     -q | --quick ) AOO_BUILD_ALL="no"; shift ;;
+    -t | --build-src ) AOO_BUILD_SRC="yes"; 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 ;;
@@ -204,4 +206,8 @@ elif [ "$AOO_BUILD_ALL" = "yes" ]; then
 	dmake -P5 ooolanguagepack || exit 1
 	dmake -P5 sdkoo_en-US || exit 1 
 fi
+if [ "$AOO_BUILD_SRC" = "yes" ]; then
+	dmake aoo_srcrelease || exit 1
+fi
+
 date "+Build ended at %H:%M:%S"

Modified: openoffice/devtools/build-scripts/4.2.0-Dev2/unxmacos/build_aoo64bit_on_macos.sh
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.2.0-Dev2/unxmacos/build_aoo64bit_on_macos.sh?rev=1882320&r1=1882319&r2=1882320&view=diff
==============================================================================
--- openoffice/devtools/build-scripts/4.2.0-Dev2/unxmacos/build_aoo64bit_on_macos.sh (original)
+++ openoffice/devtools/build-scripts/4.2.0-Dev2/unxmacos/build_aoo64bit_on_macos.sh Thu Oct  8 12:29:47 2020
@@ -60,7 +60,7 @@ AOO_BUILD_DEV=
 AOO_BUILD_SRC=
 AOO_BUILD_ALL="yes"
 
-AOPTS=`getopt -o vsjdbqa:j:m: --long verbose,skip-config,just-config,dev,beta,quick,ant-version:,java-version:,macos-target: -n 'parse-options' -- "$@"`
+AOPTS=`getopt -o vsjtdbqa:j:m: --long verbose,skip-config,just-config,build-src,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"