Commit e25f31d4 authored by Marco Mariani's avatar Marco Mariani

option --tpoverride

parent 57295bd0
...@@ -20,6 +20,7 @@ PATHDIR=`pwd` ...@@ -20,6 +20,7 @@ PATHDIR=`pwd`
BUILDTHIRDPARTY=no BUILDTHIRDPARTY=no
BUILDTYPE=foss BUILDTYPE=foss
PMIRROR=no PMIRROR=no
TPOVERRIDE=no
usage() { usage() {
echo "" echo ""
...@@ -52,6 +53,10 @@ while [ $# -gt 0 ]; do ...@@ -52,6 +53,10 @@ while [ $# -gt 0 ]; do
BUILDTHIRDPARTY=yes BUILDTHIRDPARTY=yes
shift; shift;
;; ;;
--tpoverride)
TPOVERRIDE=yes
shift;
;;
*) *)
echo "Usage: $0 [-t]" echo "Usage: $0 [-t]"
exit 1; exit 1;
...@@ -192,6 +197,9 @@ TPOPTS="-c" ...@@ -192,6 +197,9 @@ TPOPTS="-c"
if [ x$PMIRROR = x"yes" ]; then if [ x$PMIRROR = x"yes" ]; then
TPOPTS="$TPOPTS -p" TPOPTS="$TPOPTS -p"
fi fi
if [ x$TPOVERRIDE = x"yes" ]; then
TPOPTS="$TPOPTS -o"
fi
if [ x$BUILDTHIRDPARTY = x"yes" ]; then if [ x$BUILDTHIRDPARTY = x"yes" ]; then
echo "Starting 3rd Party build" echo "Starting 3rd Party build"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment