File 6059-sasl-Fix-sasl_SUITE-appup-test.patch of Package erlang
From dcd495c20ca8971ab186fd67abd48c7563ed1664 Mon Sep 17 00:00:00 2001
From: Lukas Larsson <lukas@erlang.org>
Date: Tue, 16 Aug 2022 16:27:00 +0200
Subject: [PATCH 9/9] sasl: Fix sasl_SUITE:appup test
The change in 4ee58064ace31 broke this test as the
install never copied the correct file as the directory
did not exist.
---
lib/sasl/test/Makefile | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/sasl/test/Makefile b/lib/sasl/test/Makefile
index adc5a927ac..98c6cfb5bb 100644
--- a/lib/sasl/test/Makefile
+++ b/lib/sasl/test/Makefile
@@ -95,6 +95,7 @@ release_tests_spec: make_emakefile
$(INSTALL_DATA) sasl.spec sasl.cover $(EMAKEFILE) "$(RELSYSDIR)"
chmod -R u+w "$(RELSYSDIR)"
@tar cfh - *_SUITE_data | (cd "$(RELSYSDIR)"; tar xf -)
+ $(INSTALL_DIR) "$(RELSYSDIR)/sasl_SUITE_data"
$(INSTALL_DATA) $(ERL_TOP)/make/otp_version_tickets "$(RELSYSDIR)/sasl_SUITE_data"
release_docs_spec:
--
2.35.3