Commit e25f31d4 authored by Marco Mariani's avatar Marco Mariani

option --tpoverride

parent 57295bd0
......@@ -20,6 +20,7 @@ PATHDIR=`pwd`
BUILDTHIRDPARTY=no
BUILDTYPE=foss
PMIRROR=no
TPOVERRIDE=no
usage() {
echo ""
......@@ -52,6 +53,10 @@ while [ $# -gt 0 ]; do
BUILDTHIRDPARTY=yes
shift;
;;
--tpoverride)
TPOVERRIDE=yes
shift;
;;
*)
echo "Usage: $0 [-t]"
exit 1;
......@@ -192,6 +197,9 @@ TPOPTS="-c"
if [ x$PMIRROR = x"yes" ]; then
TPOPTS="$TPOPTS -p"
fi
if [ x$TPOVERRIDE = x"yes" ]; then
TPOPTS="$TPOPTS -o"
fi
if [ x$BUILDTHIRDPARTY = x"yes" ]; then
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