Skip to content

Commit c80cecb

Browse files
committed
Updated BUILD scripts to update modules wsrep-lib and columnstore
Other things - Added lost option '--just-clean'
1 parent 30c9089 commit c80cecb

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

BUILD/FINISH.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,13 @@ cd ../storage/rocksdb/rocksdb
4444
git submodule update
4545
cd ../../maria/libmarias3
4646
git submodule update
47-
cd ../../.."
47+
cd ../../..
48+
cd storage/columnstore/columnstore
49+
git submodule update
50+
cd ../../..
51+
cd wsrep-lib
52+
git submodule update
53+
cd .."
4854
fi
4955
commands="$commands
5056
path=`dirname $0`

BUILD/SETUP.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Usage: $0 [-h|-n] [configure-options]
3232
-n, --just-print Don't actually run any commands; just print them.
3333
-c, --just-configure Stop after running configure.
3434
Combined with --just-print shows configure options.
35+
--just-clean Clean up compilation files and update sub modules
3536
--extra-configs=xxx Add this to configure options
3637
--extra-flags=xxx Add this C and CXX flags
3738
--extra-cflags=xxx Add this to C flags
@@ -71,6 +72,8 @@ parse_options()
7172
just_configure=1;;
7273
-n | --just-print | --print)
7374
just_print=1;;
75+
--just-clean)
76+
just_clean=1;;
7477
--verbose)
7578
verbose_make=1;;
7679
-h | --help)
@@ -94,6 +97,7 @@ fi
9497

9598
prefix="/usr/local/mysql"
9699
just_print=
100+
just_clean=
97101
just_configure=
98102
warning_mode=
99103
maintainer_mode=

0 commit comments

Comments
 (0)