From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AD0F4158020 for ; Sat, 26 Nov 2022 12:19:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D6DE7E091B; Sat, 26 Nov 2022 12:19:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BF852E091B for ; Sat, 26 Nov 2022 12:19:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E77C6341480 for ; Sat, 26 Nov 2022 12:19:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 787B6703 for ; Sat, 26 Nov 2022 12:19:12 +0000 (UTC) From: "Keri Harris" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Keri Harris" Message-ID: <1669465126.9938a9f418166aac77505654f75ea83e83c64e5c.keri@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/gprolog/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/gprolog/files/gprolog-1.4.5-links.patch dev-lang/gprolog/files/gprolog-1.5.0-destdir.patch dev-lang/gprolog/files/gprolog-1.5.0-links.patch X-VCS-Directories: dev-lang/gprolog/files/ X-VCS-Committer: keri X-VCS-Committer-Name: Keri Harris X-VCS-Revision: 9938a9f418166aac77505654f75ea83e83c64e5c X-VCS-Branch: master Date: Sat, 26 Nov 2022 12:19:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ba1e6410-e5d3-49a7-9e29-6a55493f875e X-Archives-Hash: a7ae9deb91159d3642ba1c2dbf903d0a commit: 9938a9f418166aac77505654f75ea83e83c64e5c Author: Keri Harris gentoo org> AuthorDate: Sat Nov 26 12:18:46 2022 +0000 Commit: Keri Harris gentoo org> CommitDate: Sat Nov 26 12:18:46 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9938a9f4 dev-lang/gprolog: use relative symlinks for gprolog binaries Thanks to Arsen Arsenovic for diagnosing the root cause of this. Closes: https://bugs.gentoo.org/882519 Signed-off-by: Keri Harris gentoo.org> dev-lang/gprolog/files/gprolog-1.4.5-links.patch | 2 +- dev-lang/gprolog/files/gprolog-1.5.0-destdir.patch | 2 +- dev-lang/gprolog/files/gprolog-1.5.0-links.patch | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-lang/gprolog/files/gprolog-1.4.5-links.patch b/dev-lang/gprolog/files/gprolog-1.4.5-links.patch index c39a1cf9a28c..573e27910bd0 100644 --- a/dev-lang/gprolog/files/gprolog-1.4.5-links.patch +++ b/dev-lang/gprolog/files/gprolog-1.4.5-links.patch @@ -9,7 +9,7 @@ if test $(LINKS_DIR) != none; then \ ./mkinstalldirs $(LINKS_DIR); \ - (cd $(LINKS_DIR) ; $(LN_S) $(INSTALL_DIR)/bin/* .); \ -+ (cd $(LINKS_DIR); for i in $(BIN_FILES); do $(LN_S) $(INSTALL_DIR)/bin/$$i .; done); \ ++ (cd $(LINKS_DIR); for i in $(BIN_FILES); do $(LN_S) -r $(INSTALL_DIR)/bin/$$i .; done); \ fi uninstall-links: diff --git a/dev-lang/gprolog/files/gprolog-1.5.0-destdir.patch b/dev-lang/gprolog/files/gprolog-1.5.0-destdir.patch index 86719e1bdcb4..c875edd0ec18 100644 --- a/dev-lang/gprolog/files/gprolog-1.5.0-destdir.patch +++ b/dev-lang/gprolog/files/gprolog-1.5.0-destdir.patch @@ -7,7 +7,7 @@ - if test $(LINKS_DIR) != none; then \ + if test @LINKS_DIR@ != none; then \ ./mkinstalldirs $(LINKS_DIR); \ - (cd $(LINKS_DIR) ; $(LN_S) $(wildcard $(INSTALL_DIR)/bin/*) .); \ + (cd $(LINKS_DIR) ; $(LN_S) -r $(wildcard $(INSTALL_DIR)/bin/*) .); \ fi uninstall-links: diff --git a/dev-lang/gprolog/files/gprolog-1.5.0-links.patch b/dev-lang/gprolog/files/gprolog-1.5.0-links.patch index e1f673156e46..70f18610f04b 100644 --- a/dev-lang/gprolog/files/gprolog-1.5.0-links.patch +++ b/dev-lang/gprolog/files/gprolog-1.5.0-links.patch @@ -9,7 +9,7 @@ if test $(LINKS_DIR) != none; then \ ./mkinstalldirs $(LINKS_DIR); \ - (cd $(LINKS_DIR) ; $(LN_S) $(INSTALL_DIR)/bin/* .); \ -+ (cd $(LINKS_DIR) ; $(LN_S) $(wildcard $(INSTALL_DIR)/bin/*) .); \ ++ (cd $(LINKS_DIR) ; $(LN_S) -r $(wildcard $(INSTALL_DIR)/bin/*) .); \ fi uninstall-links: