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 3E48E158090 for ; Tue, 17 May 2022 20:30:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80A27E08BB; Tue, 17 May 2022 20:30:47 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 69AA1E08BB for ; Tue, 17 May 2022 20:30:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1C0BC3417CD for ; Tue, 17 May 2022 20:30:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D3013B5 for ; Tue, 17 May 2022 20:30:42 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1652818818.cdf568b226e12d72bce5c93366cef2450c0da4a6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/tuxpaint/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/tuxpaint/files/tuxpaint-0.9.27-Makefile.patch X-VCS-Directories: media-gfx/tuxpaint/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: cdf568b226e12d72bce5c93366cef2450c0da4a6 X-VCS-Branch: master Date: Tue, 17 May 2022 20:30:42 +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: 669f03db-b80b-462d-bcb9-15bde4ffb820 X-Archives-Hash: 67cacc61ecf0c9d7146131668d0d67cb commit: cdf568b226e12d72bce5c93366cef2450c0da4a6 Author: Philipp Rösner protonmail com> AuthorDate: Tue May 17 20:10:15 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue May 17 20:20:18 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdf568b2 media-gfx/tuxpaint: fix missing LDFLAGS The patch for the Makefile missed the ${LDFLAGS}. Closes: https://bugs.gentoo.org/831451 Signed-off-by: Philipp Rösner protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/25541 Signed-off-by: Sam James gentoo.org> media-gfx/tuxpaint/files/tuxpaint-0.9.27-Makefile.patch | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/media-gfx/tuxpaint/files/tuxpaint-0.9.27-Makefile.patch b/media-gfx/tuxpaint/files/tuxpaint-0.9.27-Makefile.patch index fdbd5136f322..05b37e1e4812 100644 --- a/media-gfx/tuxpaint/files/tuxpaint-0.9.27-Makefile.patch +++ b/media-gfx/tuxpaint/files/tuxpaint-0.9.27-Makefile.patch @@ -27,6 +27,15 @@ ARCH_CFLAGS:=$($(OS)_ARCH_CFLAGS) windows_ARCH_LDFLAGS:= +@@ -176,7 +176,7 @@ windows_ARCH_LDFLAGS:= + macos_ARCH_LDFLAGS:=-isysroot $(SDKROOT) -L$(HOSTROOT)/lib -mmacosx-version-min=$(MINVER) -arch $(subst $() $(), -arch ,$(ARCHS)) + ios_ARCH_LDFLAGS:=-isysroot $(SDKROOT) -L$(HOSTROOT)/lib $(MINVEROPT) -arch $(subst $() $(), -arch ,$(ARCHS)) + beos_ARCH_LDFLAGS:= +-linux_ARCH_LDFLAGS:= ++linux_ARCH_LDFLAGS:=${LDFLAGS} + ARCH_LDFLAGS:=$($(OS)_ARCH_LDFLAGS) + LDFLAGS:=$(ARCH_LDFLAGS) + @@ -205,7 +205,7 @@ ARCH_HEADERS:=$($(OS)_ARCH_HEADERS) windows_PREFIX:=/usr/local macos_PREFIX:=Resources