diff mbox series

libtracefs: Don't ignore LDFLAGS when linking the shared libs

Message ID 20211124173421.22d231b2@gandalf.local.home (mailing list archive)
State Accepted
Commit ab705c2de3f3932976b3a5188c8ae2b7b7b55d90
Headers show
Series libtracefs: Don't ignore LDFLAGS when linking the shared libs | expand

Commit Message

Steven Rostedt Nov. 24, 2021, 10:34 p.m. UTC
From: "Jerome Marchand" <jmarchan@redhat.com>

do_compile_shared_library shouldn't ignore LDFLAGS. That makes it
difficult for packager to follow their distribution packaging
guidelines.

[ Taken from trace-cmd ]
Link: https://lore.kernel.org/all/20211111180318.499099-1-jmarchan@redhat.com/

Signed-off-by: "Jerome Marchand" <jmarchan@redhat.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
---
 scripts/utils.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/scripts/utils.mk b/scripts/utils.mk
index 7a88b10..0b3c067 100644
--- a/scripts/utils.mk
+++ b/scripts/utils.mk
@@ -56,7 +56,7 @@  do_build_static_lib =				\
 
 do_compile_shared_library =			\
 	($(print_shared_lib_compile)		\
-	$(CC) --shared $^ '-Wl,-soname,$(1),-rpath=$$ORIGIN' -o $@ $(LIBS))
+	$(CC) --shared $^ '-Wl,-soname,$(1),-rpath=$$ORIGIN' -o $@ $(LDFLAGS) $(LIBS))
 
 do_compile_plugin_obj =				\
 	($(print_plugin_obj_compile)		\