Updated BUILD scripts to update modules wsrep-lib and columnstore
Other things - Added lost option '--just-clean'
This commit is contained in:
parent
30c9089095
commit
c80cecb5e3
@ -44,7 +44,13 @@ cd ../storage/rocksdb/rocksdb
|
|||||||
git submodule update
|
git submodule update
|
||||||
cd ../../maria/libmarias3
|
cd ../../maria/libmarias3
|
||||||
git submodule update
|
git submodule update
|
||||||
cd ../../.."
|
cd ../../..
|
||||||
|
cd storage/columnstore/columnstore
|
||||||
|
git submodule update
|
||||||
|
cd ../../..
|
||||||
|
cd wsrep-lib
|
||||||
|
git submodule update
|
||||||
|
cd .."
|
||||||
fi
|
fi
|
||||||
commands="$commands
|
commands="$commands
|
||||||
path=`dirname $0`
|
path=`dirname $0`
|
||||||
|
@ -32,6 +32,7 @@ Usage: $0 [-h|-n] [configure-options]
|
|||||||
-n, --just-print Don't actually run any commands; just print them.
|
-n, --just-print Don't actually run any commands; just print them.
|
||||||
-c, --just-configure Stop after running configure.
|
-c, --just-configure Stop after running configure.
|
||||||
Combined with --just-print shows configure options.
|
Combined with --just-print shows configure options.
|
||||||
|
--just-clean Clean up compilation files and update sub modules
|
||||||
--extra-configs=xxx Add this to configure options
|
--extra-configs=xxx Add this to configure options
|
||||||
--extra-flags=xxx Add this C and CXX flags
|
--extra-flags=xxx Add this C and CXX flags
|
||||||
--extra-cflags=xxx Add this to C flags
|
--extra-cflags=xxx Add this to C flags
|
||||||
@ -71,6 +72,8 @@ parse_options()
|
|||||||
just_configure=1;;
|
just_configure=1;;
|
||||||
-n | --just-print | --print)
|
-n | --just-print | --print)
|
||||||
just_print=1;;
|
just_print=1;;
|
||||||
|
--just-clean)
|
||||||
|
just_clean=1;;
|
||||||
--verbose)
|
--verbose)
|
||||||
verbose_make=1;;
|
verbose_make=1;;
|
||||||
-h | --help)
|
-h | --help)
|
||||||
@ -94,6 +97,7 @@ fi
|
|||||||
|
|
||||||
prefix="/usr/local/mysql"
|
prefix="/usr/local/mysql"
|
||||||
just_print=
|
just_print=
|
||||||
|
just_clean=
|
||||||
just_configure=
|
just_configure=
|
||||||
warning_mode=
|
warning_mode=
|
||||||
maintainer_mode=
|
maintainer_mode=
|
||||||
|
Loading…
x
Reference in New Issue
Block a user