Provides and conflicts with msys2-runtime, so can be used to replace it if wanted. Keep this as a separate package to test for regressions in cygwin and to have (in theory) a runtime that supports 32bit in the repo. There is no guarantee for how long we are going to keep this.
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From 31b5e84ef74da21c7a8f9fea5c7395154f1ae36b Mon Sep 17 00:00:00 2001
|
|
From: Johannes Schindelin <johannes.schindelin@gmx.de>
|
|
Date: Mon, 8 Nov 2021 16:22:57 +0100
|
|
Subject: [PATCH 33/N] install-libs: depend on the "toollibs"
|
|
|
|
Before symlinking libg.a, we need the symlink source `libmsys-2.0.a`: in
|
|
MSYS2, we copy by default (if we were creating Unix-style symlinks, the
|
|
target would not have to exist before symlinking, but when copying we do
|
|
need the source _right away_).
|
|
|
|
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
|
|
---
|
|
winsup/cygwin/Makefile.am | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/winsup/cygwin/Makefile.am b/winsup/cygwin/Makefile.am
|
|
index 23a3c23..f1fe01d 100644
|
|
--- a/winsup/cygwin/Makefile.am
|
|
+++ b/winsup/cygwin/Makefile.am
|
|
@@ -727,7 +727,7 @@ man_MANS = regex/regex.3 regex/regex.7
|
|
install-exec-hook: install-libs
|
|
install-data-local: install-headers install-ldif
|
|
|
|
-install-libs:
|
|
+install-libs: install-toollibDATA
|
|
@$(MKDIR_P) $(DESTDIR)$(bindir)
|
|
$(INSTALL_PROGRAM) $(TEST_DLL_NAME) $(DESTDIR)$(bindir)/$(DLL_NAME)
|
|
@$(MKDIR_P) $(DESTDIR)$(toollibdir)
|