mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-02 10:52:57 +02:00
gnustep-make: detect TARGET_OS=linux-musl as linux target
It previously looked for the `gnu` part of TARGET_OS=linux-gnu
This commit is contained in:
parent
55141f77ba
commit
8a5257d943
2 changed files with 12 additions and 1 deletions
11
srcpkgs/gnustep-make/patches/musl.patch
Normal file
11
srcpkgs/gnustep-make/patches/musl.patch
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
--- 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) \
|
|
@ -1,7 +1,7 @@
|
||||||
# Template build file for 'gnustep-make'
|
# Template build file for 'gnustep-make'
|
||||||
pkgname=gnustep-make
|
pkgname=gnustep-make
|
||||||
version=2.7.0
|
version=2.7.0
|
||||||
revision=2
|
revision=3
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
conf_files="/etc/GNUstep/GNUstep.conf"
|
conf_files="/etc/GNUstep/GNUstep.conf"
|
||||||
short_desc="GNU Step Makefile helpers for a GNUstep-based project"
|
short_desc="GNU Step Makefile helpers for a GNUstep-based project"
|
||||||
|
|
Loading…
Add table
Reference in a new issue