diff options
author | Raimo Niskanen <[email protected]> | 2011-11-10 10:16:18 +0100 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2011-11-15 11:57:39 +0100 |
commit | 15a0f41dd37c2147d2dd5da14eb3707fdeb22855 (patch) | |
tree | b43f4c06ac42f05dd21bea630b91cd5f4a6d8ba7 /Makefile.in | |
parent | ff305c1a15e34f1c8d4f923a8f0e532b4e946512 (diff) | |
download | otp-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 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 9ac516ca33..902c21fb52 100644 --- a/Makefile.in +++ b/Makefile.in @@ -158,7 +158,9 @@ ERLANG_LIBDIR = $(DESTDIR)$(ERLANG_INST_LIBDIR) MAKE = @MAKE_PROG@ # This should be set to the target "arch-vendor-os" -export TARGET = @TARGET@ +TARGET := @TARGET@ +include $(ERL_TOP)/make/target.mk +export TARGET BOOTSTRAP_ONLY = @BOOTSTRAP_ONLY@ |