From 87d70fb598105b64b538ff6b81eef9da626255b1 Mon Sep 17 00:00:00 2001 From: unknown Date: Sun, 4 Mar 2001 22:34:26 +0100 Subject: Add --just-configure (-c) option to BUILD scripts. BUILD/FINISH.sh: Add --just-configure option BUILD/SETUP.sh: Add --just-configure option BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted --- BUILD/FINISH.sh | 15 ++++++++++----- BUILD/SETUP.sh | 15 +++++++++++---- BitKeeper/etc/logging_ok | 1 + 3 files changed, 22 insertions(+), 9 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 diff --git a/BUILD/SETUP.sh b/BUILD/SETUP.sh index 9c267589ad6..7e0810dfd1c 100644 --- a/BUILD/SETUP.sh +++ b/BUILD/SETUP.sh @@ -5,18 +5,25 @@ then fi nonono= -case "$1" in --n | --just-print ) nonono=1; shift ;; --h | --help ) cat <