mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
Temporary fixes for building from source dist in pushbuild
netware/BUILD/compile-netware-END: If running as user pushbuild don't run autotools again netware/BUILD/mwenv: Set ARFLAGS to value of AR_FLAGS
This commit is contained in:
parent
0b381c94cb
commit
375b04b9fe
2 changed files with 13 additions and 2 deletions
|
@ -18,8 +18,13 @@ rm -rf Makefile.in.bk
|
|||
# Setup Metrowerks environment
|
||||
. $path/mwenv
|
||||
|
||||
# Run autotools(use BUILD/autorun.sh)
|
||||
. BUILD/autorun.sh
|
||||
# Temporary hack to allow building from source dist
|
||||
if [ ! "$USER"=pushbuild ]
|
||||
then
|
||||
# Run autotools(use BUILD/autorun.sh)
|
||||
echo "Running autotools again(BUILD/autorun.sh)"
|
||||
. BUILD/autorun.sh
|
||||
fi
|
||||
|
||||
# configure
|
||||
./configure $base_configs $extra_configs
|
||||
|
|
|
@ -65,5 +65,11 @@ then
|
|||
export TERM=linux
|
||||
fi
|
||||
|
||||
# Temporary hack to allow building from source dist
|
||||
if [ "$USER"=pushbuild ]
|
||||
then
|
||||
export ARFLAGS=$AR_FLAGS
|
||||
fi
|
||||
|
||||
# Print all env. variables
|
||||
export
|
||||
|
|
Loading…
Add table
Reference in a new issue