diff options
author | Gustav Simonsson <[email protected]> | 2012-02-24 14:59:12 +0100 |
---|---|---|
committer | Gustav Simonsson <[email protected]> | 2012-02-24 14:59:12 +0100 |
commit | 583585888569522b2380652c5cd4b7197f09523c (patch) | |
tree | 0bcfd6368bfc0db2fa258892f124032be9e3e693 /Makefile.in | |
parent | 738c6d54dde1e4c8f6030690eabe50a287301eb9 (diff) | |
parent | d9ee75fa3df8676deb92136c38b65e928cde196e (diff) | |
download | otp-583585888569522b2380652c5cd4b7197f09523c.tar.gz otp-583585888569522b2380652c5cd4b7197f09523c.tar.bz2 otp-583585888569522b2380652c5cd4b7197f09523c.zip |
Merge branch 'maint'
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 2ded1b4356..0b1f0930ca 100644 --- a/Makefile.in +++ b/Makefile.in @@ -220,8 +220,10 @@ BOOTSTRAP_ROOT = $(ERL_TOP) LOCAL_PATH = $(ERL_TOP)/erts/bin/$(TARGET):$(ERL_TOP)/erts/bin ifeq ($(TARGET),win32) BOOT_PREFIX=$(WIN32_WRAPPER_PATH):$(BOOTSTRAP_ROOT)/bootstrap/bin: +TEST_PATH_PREFIX=$(WIN32_WRAPPER_PATH):$(ERL_TOP)/bin: else BOOT_PREFIX=$(BOOTSTRAP_ROOT)/bootstrap/bin: +TEST_PATH_PREFIX=$(ERL_TOP)/bin: endif # ---------------------------------------------------------------------- @@ -880,7 +882,7 @@ tests release_tests: $(TEST_DIRS) $(TEST_DIRS): if test -f $@/Makefile; then \ (cd $@; $(MAKE) TESTROOT=$(TESTSUITE_ROOT) \ - PATH=$(ERL_TOP)/bin:$(BOOT_PREFIX)$${PATH} release_tests) || exit $$?; \ + PATH=$(TEST_PATH_PREFIX)$(BOOT_PREFIX)$${PATH} release_tests) || exit $$?; \ fi # |