bmake: update to 20211001
This commit is contained in:
parent
19413a149a
commit
f09305c1b3
2 changed files with 2 additions and 27 deletions
|
@ -1,25 +0,0 @@
|
|||
From 20210a4abd417f067483875fbb8aaabe56a344d0 Mon Sep 17 00:00:00 2001
|
||||
From: q66 <daniel@octaforge.org>
|
||||
Date: Wed, 23 Jun 2021 03:02:10 +0200
|
||||
Subject: [PATCH] fix broken shared library creation
|
||||
|
||||
---
|
||||
mk/lib.mk | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/mk/lib.mk b/mk/lib.mk
|
||||
index c397941..ca29e8f 100644
|
||||
--- a/bmake/mk/lib.mk
|
||||
+++ b/bmake/mk/lib.mk
|
||||
@@ -170,7 +170,7 @@ LD_solib= lib${LIB}_pic.a
|
||||
.elif ${TARGET_OSNAME} == "Linux"
|
||||
SHLIB_LD = ${CC}
|
||||
# this is ambiguous of course
|
||||
-LD_shared=-shared -Wl,"-soname lib${LIB}.so.${SHLIB_MAJOR}"
|
||||
+LD_shared=-shared -Wl,-soname,lib${LIB}.so.${SHLIB_MAJOR}
|
||||
LD_solib= -Wl,--whole-archive lib${LIB}_pic.a -Wl,--no-whole-archive
|
||||
.if ${COMPILER_TYPE} == "gcc"
|
||||
# Linux uses GNU ld, which is a multi-pass linker
|
||||
--
|
||||
2.31.1
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'bmake'
|
||||
pkgname=bmake
|
||||
version=20210808
|
||||
version=20211001
|
||||
revision=1
|
||||
create_wrksrc=yes
|
||||
short_desc="Portable version of the NetBSD make build tool"
|
||||
|
@ -8,7 +8,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
|
|||
license="BSD-3-Clause"
|
||||
homepage="https://www.crufty.net/help/sjg/bmake.html"
|
||||
distfiles="https://www.crufty.net/ftp/pub/sjg/bmake-${version}.tar.gz"
|
||||
checksum=40a5860812091a0613b9542637a0f4aa05f38889e2a1f889f0e827feb41357d2
|
||||
checksum=cad7ef0fb41138050f8932af3a7ade16f7265b3f37ff6356703e0b1ad6542739
|
||||
python_version=3
|
||||
|
||||
do_configure() {
|
||||
|
|
Loading…
Reference in a new issue