diff options
author | Björn-Egil Dahlberg <[email protected]> | 2011-11-11 10:58:53 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2011-11-11 10:58:53 +0100 |
commit | 857e8a96dc7902e7d6a97ea510a0ce0e69731631 (patch) | |
tree | c1f3453ba11b6fd009d89ef929ce777cbcf2f84b | |
parent | 2df8e1f2ba502530e23081ee3b4644c577d8c99f (diff) | |
parent | 5065129f3c603c580fce2337e4de7668414227d8 (diff) | |
download | otp-857e8a96dc7902e7d6a97ea510a0ce0e69731631.tar.gz otp-857e8a96dc7902e7d6a97ea510a0ce0e69731631.tar.bz2 otp-857e8a96dc7902e7d6a97ea510a0ce0e69731631.zip |
Merge branch 'egil/fix-release_tests-path'
* egil/fix-release_tests-path:
otp: Add paths to erlc for release_tests
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 7baf5cc3aa..9ac516ca33 100644 --- a/Makefile.in +++ b/Makefile.in @@ -854,7 +854,8 @@ tests release_tests: $(TEST_DIRS) $(TEST_DIRS): if test -f $@/Makefile; then \ - (cd $@; $(MAKE) TESTROOT=$(TESTSUITE_ROOT) release_tests) || exit $$?; \ + (cd $@; $(MAKE) TESTROOT=$(TESTSUITE_ROOT) \ + PATH=$(ERL_TOP)/bin:$(BOOT_PREFIX)$${PATH} release_tests) || exit $$?; \ fi # |