aboutsummaryrefslogtreecommitdiffstats
path: root/otp_build
diff options
context:
space:
mode:
authorRaimo Niskanen <[email protected]>2011-11-10 10:16:18 +0100
committerRaimo Niskanen <[email protected]>2011-11-15 11:57:39 +0100
commit15a0f41dd37c2147d2dd5da14eb3707fdeb22855 (patch)
treeb43f4c06ac42f05dd21bea630b91cd5f4a6d8ba7 /otp_build
parentff305c1a15e34f1c8d4f923a8f0e532b4e946512 (diff)
downloadotp-15a0f41dd37c2147d2dd5da14eb3707fdeb22855.tar.gz
otp-15a0f41dd37c2147d2dd5da14eb3707fdeb22855.tar.bz2
otp-15a0f41dd37c2147d2dd5da14eb3707fdeb22855.zip
Cleanup the use of TARGET in toplevel and common make and build files
Common file target.mk now passes the TARGET value through config.sub for canonification. Toplevel Makefile now calls target.mk so it handles TARGET like all sub-makefiles. Build script otp_build no longer creates a target specific directory that a long time ago was used for target specific configure cache file.
Diffstat (limited to 'otp_build')
-rwxr-xr-xotp_build12
1 files changed, 0 insertions, 12 deletions
diff --git a/otp_build b/otp_build
index 44bbab22b5..76f1d20ff7 100755
--- a/otp_build
+++ b/otp_build
@@ -324,16 +324,6 @@ do_autoconf ()
fi
}
-mk_targetdir ()
-{
- if [ ! -d $ERL_TOP/$TARGET ]; then
- echo "creating $ERL_TOP/$TARGET"
- mkdir $ERL_TOP/$TARGET
- else
- echo "existing $ERL_TOP/$TARGET is used"
- fi
-}
-
run_configure ()
{
cdir="$ERL_TOP"
@@ -499,7 +489,6 @@ maybe_copy_static_cache ()
do_configure ()
{
setup_make
- mk_targetdir
# Get `erl_build_tool_vars'
. "$ERL_TOP/erl-build-tool-vars.sh" || exit 1
@@ -513,7 +502,6 @@ do_configure ()
hide_vars OVERRIDE_TARGET TARGET
TARGET=$BUILDSYS
export TARGET
- mk_targetdir
set_config_flags "$@"
run_configure "$@"
restore_vars OVERRIDE_TARGET TARGET;;