mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-05 02:50:46 +00:00
dlm: fix ldflags QA warning
* fixes: dlm-4.0.2: No GNU_HASH in the elf binary: '/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/dlm/4.0.2-r0/packages-split/dlm/usr/lib/libdlmcontrol.so.3.1' No GNU_HASH in the elf binary: '/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/dlm/4.0.2-r0/packages-split/dlm/usr/sbin/dlm_tool' No GNU_HASH in the elf binary: '/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/dlm/4.0.2-r0/packages-split/dlm/usr/sbin/dlm_controld' [ldflags] Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
diff -uNr dlm-4.0.2.orig/dlm_controld/Makefile dlm-4.0.2/dlm_controld/Makefile
|
||||
--- dlm-4.0.2.orig/dlm_controld/Makefile 2017-04-04 10:49:23.661320260 +0200
|
||||
+++ dlm-4.0.2/dlm_controld/Makefile 2017-04-04 10:50:36.121326429 +0200
|
||||
@@ -55,7 +55,7 @@
|
||||
BIN_CFLAGS += -fPIE -DPIE
|
||||
BIN_CFLAGS += -I../include -I../libdlm
|
||||
|
||||
-BIN_LDFLAGS += -Wl,-z,now -Wl,-z,relro -pie
|
||||
+BIN_LDFLAGS += $(LDFLAGS) -Wl,-z,now -Wl,-z,relro -pie
|
||||
BIN_LDFLAGS += -lpthread -lrt -lcpg -lcmap -lcfg -lquorum
|
||||
|
||||
LIB_CFLAGS += $(BIN_CFLAGS)
|
||||
diff -uNr dlm-4.0.2.orig/dlm_tool/Makefile dlm-4.0.2/dlm_tool/Makefile
|
||||
--- dlm-4.0.2.orig/dlm_tool/Makefile 2013-07-31 17:50:26.000000000 +0200
|
||||
+++ dlm-4.0.2/dlm_tool/Makefile 2017-04-04 10:50:44.617327153 +0200
|
||||
@@ -32,7 +32,7 @@
|
||||
BIN_CFLAGS += -fPIE -DPIE
|
||||
BIN_CFLAGS += -I../include -I../libdlm -I../dlm_controld
|
||||
|
||||
-BIN_LDFLAGS += -Wl,-z,now -Wl,-z,relro -pie
|
||||
+BIN_LDFLAGS += $(LDFLAGS) -Wl,-z,now -Wl,-z,relro -pie
|
||||
BIN_LDFLAGS += -L../libdlm -L../dlm_controld
|
||||
BIN_LDFLAGS += -lpthread -ldlm -ldlmcontrol
|
||||
|
||||
diff -uNr dlm-4.0.2.orig/dlm_controld/Makefile dlm-4.0.2/dlm_controld/Makefile
|
||||
--- dlm-4.0.2.orig/dlm_controld/Makefile 2017-04-04 11:02:58.578389641 +0200
|
||||
+++ dlm-4.0.2/dlm_controld/Makefile 2017-04-04 11:07:55.672414935 +0200
|
||||
@@ -59,7 +59,7 @@
|
||||
BIN_LDFLAGS += -lpthread -lrt -lcpg -lcmap -lcfg -lquorum
|
||||
|
||||
LIB_CFLAGS += $(BIN_CFLAGS)
|
||||
-LIB_LDFLAGS += -Wl,-z,relro -pie
|
||||
+LIB_LDFLAGS += $(LDFLAGS) -Wl,-z,relro -pie
|
||||
|
||||
ifeq ($(USE_SD_NOTIFY),yes)
|
||||
BIN_CFLAGS += $(shell pkg-config --cflags libsystemd-daemon) \
|
||||
@@ -5,7 +5,9 @@ HOMEPAGE = "https://fedorahosted.org/cluster/wiki/HomePage"
|
||||
|
||||
REQUIRED_DISTRO_FEATURES = "systemd"
|
||||
|
||||
SRC_URI = "https://git.fedorahosted.org/cgit/dlm.git/snapshot/${BP}.tar.xz"
|
||||
SRC_URI = "https://git.fedorahosted.org/cgit/dlm.git/snapshot/${BP}.tar.xz \
|
||||
file://respect-ldflags-also-from-bin_ldflags.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "efc2ee6093aa6aa0a88aaad83e998a3f"
|
||||
SRC_URI[sha256sum] = "b89bc557aaffbab0ac005398025f247718a5589cff6574d902eaffe2b20e683e"
|
||||
|
||||
Reference in New Issue
Block a user