diff options
author | Philipp Rösner <rndxelement@protonmail.com> | 2022-05-17 22:10:15 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-05-17 20:20:18 +0000 |
commit | cdf568b226e12d72bce5c93366cef2450c0da4a6 (patch) | |
tree | e497c0a80cf5fde5f31318ade58ec9284f43b912 /media-gfx/tuxpaint | |
parent | net-p2p/transmission: drop dependency on dbus-glib (diff) | |
download | gentoo-cdf568b226e12d72bce5c93366cef2450c0da4a6.tar.gz gentoo-cdf568b226e12d72bce5c93366cef2450c0da4a6.tar.bz2 gentoo-cdf568b226e12d72bce5c93366cef2450c0da4a6.zip |
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 <rndxelement@protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/25541
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-gfx/tuxpaint')
-rw-r--r-- | media-gfx/tuxpaint/files/tuxpaint-0.9.27-Makefile.patch | 9 |
1 files changed, 9 insertions, 0 deletions
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 |