void-packages/srcpkgs/gnustep-make/patches/musl.patch
Duncaen 8a5257d943 gnustep-make: detect TARGET_OS=linux-musl as linux target
It previously looked for the `gnu` part of TARGET_OS=linux-gnu
2019-04-27 01:44:09 +02:00

11 lines
513 B
Diff

--- target.make.orig
+++ target.make
@@ -553,7 +553,7 @@
# The following ifeq matches both 'linux-gnu' (which is GNU/Linux ELF)
# and 'gnu0.3' (I've been told GNUSTEP_TARGET_OS is 'gnu0.3' on
# GNU/Hurd at the moment). We want the same code in both cases.
-ifeq ($(findstring gnu, $(GNUSTEP_TARGET_OS)), gnu)
+ifeq ($(findstring linux, $(GNUSTEP_TARGET_OS)), linux)
HAVE_SHARED_LIBS = yes
SHARED_LIB_LINK_CMD = \
$(LD) $(SHARED_LD_PREFLAGS) -shared -Wl,-soname,$(LIB_LINK_SONAME_FILE) \