2020-08-20 15:56:02 +00:00
|
|
|
commit 5f4c89b9876e70e36b89742aed55e0c388ccaadf
|
|
|
|
Author: Michael Matz <matz@suse.com>
|
|
|
|
Date: Tue Aug 18 10:42:17 2020 +0200
|
|
|
|
|
|
|
|
memkind: fix build
|
|
|
|
|
|
|
|
We build with --disable-static, but the Makefile isn't completely
|
|
|
|
prepared for that, this removes the remaining hard-coded reference to
|
|
|
|
the static lib.
|
|
|
|
|
|
|
|
Signed-off-by: Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
|
|
|
|
2022-11-15 15:30:45 +00:00
|
|
|
Index: Makefile.am
|
|
|
|
===================================================================
|
|
|
|
--- Makefile.am.orig
|
2020-08-20 15:56:02 +00:00
|
|
|
+++ Makefile.am
|
2022-11-15 15:30:45 +00:00
|
|
|
@@ -672,7 +672,7 @@ memkind-$(VERSION).spec:
|
2019-12-10 14:45:43 +00:00
|
|
|
rpm: dist
|
|
|
|
$(MAKE) version="$(VERSION)" -f memkind.spec.mk $@
|
2017-11-17 15:10:01 +00:00
|
|
|
|
2020-08-20 15:56:02 +00:00
|
|
|
-all: jemalloc_deps static_lib
|
|
|
|
+all: jemalloc_deps
|
2017-11-17 15:10:01 +00:00
|
|
|
|
|
|
|
# the script merge memkind and jemalloc libraries into one static library.
|
|
|
|
define ar_prog
|