summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorskynet1 <noahmartinwilliams@gmail.com>2021-06-10 20:27:26 -0500
committerskynet1 <noahmartinwilliams@gmail.com>2021-06-10 20:27:26 -0500
commit4c92cba81644791c8201d40a57a64eb28bcbfb85 (patch)
tree16cbe829801e0a5bfa197b2c12b80c34005a58a2 /Makefile.in
parent008a987549cc09789057ae350a6f6c09a1ef03c6 (diff)
downloaderlang-4c92cba81644791c8201d40a57a64eb28bcbfb85.tar.gz
Fix A Bug That Causes The Test System To Not Run
The test system doesn't run because subsystem tests don't know where ERL_TOP is.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index ab2fc77b06..f96ae5ee1c 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1095,7 +1095,7 @@ tests release_tests: $(TEST_DIRS)
$(TEST_DIRS):
if test -f $@/Makefile; then \
- (cd $@; $(MAKE) TESTROOT="$(TESTSUITE_ROOT)" \
+ (cd $@; $(MAKE) TESTROOT="$(TESTSUITE_ROOT)" ERL_TOP="$(ERL_TOP)" \
PATH=$(TEST_PATH_PREFIX)$(BOOT_PREFIX)"$${PATH}" release_tests) || exit $$?; \
fi