mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
8ae9f14591
netware/BUILD/compile-linux-tools: Need to run make on sql_yacc.cc. netware/BUILD/compile-netware-END: Use .zip package. netware/BUILD/compile-netware-all: Add compile-netware-src. netware/BUILD/compile-netware-standard: Need backslash to avoid error. netware/BUILD/mwenv: Add additional include, library paths, -dialect and -map flags for CW. netware/BUILD/nwbootstrap: Additional status messages, update versions in .def files. netware/Makefile.am: Cosmetic change, add @openssl_libs@ in case of OpenSSL feature usage. netware/isamchk.def: Add SCREENNAME to allow interaction. netware/my_manage.c: Take out unused args to mysqladmin. netware/myisamchk.def: Add SCREENNAME to allow interaction. netware/myisamlog.def: Add SCREENNAME to allow interaction. netware/myisampack.def: Add SCREENNAME to allow interaction. netware/mysql_test_run.c: Multiple changes to help test suite. netware/mysqlbinlog.def: Add SCREENNAME to allow interaction. netware/mysqlcheck.def: Add SCREENNAME to allow interaction. netware/mysqld_safe.c: Make error message more accurate/descriptive. netware/mysqldump.def: Add SCREENNAME to allow interaction. netware/mysqlimport.def: Add SCREENNAME to allow interaction.
41 lines
625 B
Bash
Executable file
41 lines
625 B
Bash
Executable file
#! /bin/sh
|
|
|
|
# debug
|
|
#set -x
|
|
|
|
# stop on errors
|
|
set -e
|
|
|
|
path=`dirname $0`
|
|
|
|
# clean
|
|
if test -e "Makefile"; then make -k clean; fi
|
|
|
|
# remove files
|
|
rm -f NEW-RPMS/*
|
|
rm -f */.deps/*.P
|
|
rm -rf Makefile.in.bk
|
|
|
|
# Metrowerks enviornment
|
|
. $path/mwenv
|
|
|
|
# run auto tools
|
|
. $path/compile-AUTOTOOLS
|
|
|
|
# configure
|
|
./configure $base_configs $extra_configs
|
|
|
|
# make
|
|
make clean bin-dist
|
|
|
|
# mark the build
|
|
for file in *.tar.gz *.zip
|
|
do
|
|
if (expr "$file" : "mysql-[1-9].*" > /dev/null)
|
|
then
|
|
new_file=`echo $file | sed -e "s/mysql-/mysql-$suffix-/"`
|
|
if test -e "$new_file"; then mv -f $new_file $new_file.old; fi
|
|
mv $file $new_file
|
|
fi
|
|
done
|
|
|