diff options
author | tim@work.mysql.com <> | 2001-03-04 22:34:26 +0100 |
---|---|---|
committer | tim@work.mysql.com <> | 2001-03-04 22:34:26 +0100 |
commit | 639a1069d313843288ba6d9cb54b290073a748a7 (patch) | |
tree | f73fa7dc672491c7d434bd2a8dd522ede9d49166 /BUILD/FINISH.sh | |
parent | 38f16c1caa4a4286b166dbacf922425da82ffd1e (diff) | |
download | mariadb-git-639a1069d313843288ba6d9cb54b290073a748a7.tar.gz |
Add --just-configure (-c) option to BUILD scripts.
Diffstat (limited to 'BUILD/FINISH.sh')
-rw-r--r-- | BUILD/FINISH.sh | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/BUILD/FINISH.sh b/BUILD/FINISH.sh index 48d9c7ad21b..41eab2442d7 100644 --- a/BUILD/FINISH.sh +++ b/BUILD/FINISH.sh @@ -17,19 +17,24 @@ cd innobase aclocal; autoheader; aclocal; automake; autoconf cd .. -CFLAGS=\"$cflags\" CXX=gcc CXXFLAGS=\"$cxxflags\" $configure +CFLAGS=\"$cflags\" CXX=gcc CXXFLAGS=\"$cxxflags\" $configure" -$make $AM_MAKEFLAGS" - -if [ "x$strip" = "xyes" ] +if [ -z "$just_configure" ] then commands="$commands +$make $AM_MAKEFLAGS" + + if [ "x$strip" = "xyes" ] + then + commands="$commands + mkdir -p tmp nm --numeric-sort sql/mysqld > tmp/mysqld.sym objdump -d sql/mysqld > tmp/mysqld.S strip sql/mysqld" -fi + fi +fi if test -z "$nonono" then |