From d777446213f963c2fcff3e57489aee53d40c74dc Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 27 Aug 2007 13:30:22 +0200 Subject: [PATCH] More cleanup / fixing for NetWare: 1) "test_db.sql" is a plaintext file, no binary; 2) do not try to strip the binaries, it will not work. configure.in: For NetWare, we cannot strip the binaries, so there is no use in attempting it. scripts/make_binary_distribution.sh: Get rid of a typing error, introduced when a following file name was deleted. --- configure.in | 8 ++++++++ scripts/make_binary_distribution.sh | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index eb8e7b831db..ab4f07e85e2 100644 --- a/configure.in +++ b/configure.in @@ -2621,6 +2621,14 @@ AC_SUBST(CC) AC_SUBST(GXX) # Set configuration options for make_binary_distribution +case $SYSTEM_TYPE in + *netware*) + MAKE_BINARY_DISTRIBUTION_OPTIONS="$MAKE_BINARY_DISTRIBUTION_OPTIONS --no-strip" + ;; + *) + : # no change for other platforms yet + ;; +esac AC_SUBST(MAKE_BINARY_DISTRIBUTION_OPTIONS) # Output results diff --git a/scripts/make_binary_distribution.sh b/scripts/make_binary_distribution.sh index b6404a33cc4..8e670f0e6ba 100644 --- a/scripts/make_binary_distribution.sh +++ b/scripts/make_binary_distribution.sh @@ -212,7 +212,7 @@ BIN_FILES="extra/comp_err$BS extra/replace$BS extra/perror$BS \ if [ $BASE_SYSTEM = "netware" ] ; then BIN_FILES="$BIN_FILES \ netware/mysqld_safe$BS netware/mysql_install_db$BS \ - netware/init_db.sql netware/test_db.sql$BS \ + netware/init_db.sql netware/test_db.sql \ netware/mysqlhotcopy$BS netware/libmysql$BS netware/init_secure_db.sql \ "; # For all other platforms: