mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
1a01f0ff08
netware/mysql.xdc: Change mode to -rw-rw-r-- netware/BUILD/compile-AUTOTOOLS: Turned on error checking in all NetWare build scripts. netware/BUILD/compile-linux-tools: Turned on error checking in all NetWare build scripts. netware/BUILD/compile-netware-END: Turned on error checking in all NetWare build scripts. netware/BUILD/compile-netware-START: Turned on error checking in all NetWare build scripts. netware/BUILD/compile-netware-all: Turned on error checking in all NetWare build scripts. netware/BUILD/compile-netware-debug: Turned on error checking in all NetWare build scripts. netware/BUILD/compile-netware-standard: Turned on error checking in all NetWare build scripts. netware/BUILD/mwasmnlm: Turned on error checking in all NetWare build scripts. netware/BUILD/mwccnlm: Turned on error checking in all NetWare build scripts. netware/BUILD/mwldnlm: Turned on error checking in all NetWare build scripts. netware/BUILD/nwbootstrap: Add target path suffix
41 lines
638 B
Bash
Executable file
41 lines
638 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
|
|
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
|
|
|