From 33ae32174c403ea1c6e38dd348e6bad9a608fe53 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 20 Dec 2000 00:11:49 -0700 Subject: acconfig.h fix to make ENCRYPT work BUILD/compile-pentium-debug debug has different warnings BUILD/FINISH.sh save symbol table and dissassembled code with symobls available before strip use $do_make for make decision instead of $make to avoid conflict BUILD/SETUP.sh export AM_MAKEFLAGS fast is now -fno-omit-frame-pointer, the opposite is now called reckless configure.in fixes to make CRYPT work again Docs/Makefile.am hack to avoid rebuilding the manual on make clean -why does Makefile depend on $BUILD_SOURCES, and do we even need BUILD_SOURCES? BUILD/FINISH.sh: save symbol table and dissassembled code with symobls available before strip use $do_make for make decision instead of $make to avoid conflict BUILD/SETUP.sh: export AM_MAKEFLAGS fast is now -fno-omit-frame-pointer, the opposite is now called reckless BUILD/compile-pentium-debug: debug has different warnings BitKeeper/etc/ignore: Added mysqld.S mysqld.sym to the ignore list Docs/Makefile.am: hack to avoid rebuilding the manual on make clean -why does Makefile depend on $BUILD_SOURCES, and do we even need BUILD_SOURCES? acconfig.h: fix to make ENCRYPT work configure.in: fixes to make CRYPT work again --- BUILD/FINISH.sh | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'BUILD/FINISH.sh') diff --git a/BUILD/FINISH.sh b/BUILD/FINISH.sh index 625802f78cb..02deb67bd25 100644 --- a/BUILD/FINISH.sh +++ b/BUILD/FINISH.sh @@ -8,5 +8,13 @@ done CFLAGS="$cflags" CXX=gcc CXXFLAGS="$cxxflags" eval "$configure" -test "$make" = no || $make $AM_MAKEFLAGS -test -z "$strip" || strip mysqld +if [ "x$do_make" = "xno" ] ; then + exit 0 +fi + +$make $AM_MAKEFLAGS +if [ "x$strip" = "xyes" ]; then + nm --numeric-sort sql/mysqld > mysqld.sym + objdump -d sql/mysqld > mysqld.S + strip sql/mysqld +fi -- cgit v1.2.1