initial commit
imported from https://salsa.debian.org/kernel-team/linux.git commit 9d5cc9d9d6501d7f1dd7e194d4b245bd0b6c6a22 version 6.11.4-1
This commit is contained in:
17
debian/patches/bugfix/all/tools-perf-fix-missing-ldflags-for-some-programs.patch
vendored
Normal file
17
debian/patches/bugfix/all/tools-perf-fix-missing-ldflags-for-some-programs.patch
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
From: Ben Hutchings <benh@debian.org>
|
||||
Date: Sat, 15 Jan 2022 22:59:11 +0100
|
||||
Subject: tools/perf: Fix missing LDFLAGS for some programs
|
||||
|
||||
Signed-off-by: Ben Hutchings <benh@debian.org>
|
||||
---
|
||||
--- a/tools/perf/Makefile.perf
|
||||
+++ b/tools/perf/Makefile.perf
|
||||
@@ -785,7 +785,7 @@ $(OUTPUT)dlfilters/%.o: dlfilters/%.c in
|
||||
.SECONDARY: $(DLFILTERS:.so=.o)
|
||||
|
||||
$(OUTPUT)dlfilters/%.so: $(OUTPUT)dlfilters/%.o
|
||||
- $(QUIET_LINK)$(CC) $(EXTRA_CFLAGS) -shared -o $@ $<
|
||||
+ $(QUIET_LINK)$(CC) $(EXTRA_CFLAGS) $(LDFLAGS) -shared -o $@ $<
|
||||
|
||||
ifndef NO_JVMTI
|
||||
LIBJVMTI_IN := $(OUTPUT)jvmti/jvmti-in.o
|
Reference in New Issue
Block a user