diff options
author | unknown <joerg@trift2.> | 2007-08-27 13:30:22 +0200 |
---|---|---|
committer | unknown <joerg@trift2.> | 2007-08-27 13:30:22 +0200 |
commit | d777446213f963c2fcff3e57489aee53d40c74dc (patch) | |
tree | 3f5ec9161d4608c9bc8bf74baabdf2755ef1ebb6 /configure.in | |
parent | 454063c5a96ec9904485501cd3a7dd8750937249 (diff) | |
download | mariadb-git-d777446213f963c2fcff3e57489aee53d40c74dc.tar.gz |
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.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 8 insertions, 0 deletions
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 |