Skip to content

Commit c1a8627

Browse files
committed
kbuild: fix build ID symlinks to installed debug VDSO files
Commit 56769ba ("kbuild: unify vdso_install rules") accidentally dropped the '.debug' suffix from the build ID symlinks. Fixes: 56769ba ("kbuild: unify vdso_install rules") Signed-off-by: Masahiro Yamada <[email protected]>
1 parent 8809461 commit c1a8627

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/Makefile.vdsoinst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $$(dest): $$(src) FORCE
2222

2323
# Some architectures create .build-id symlinks
2424
ifneq ($(filter arm sparc x86, $(SRCARCH)),)
25-
link := $(install-dir)/.build-id/$$(shell $(READELF) -n $$(src) | sed -n 's@^.*Build ID: \(..\)\(.*\)@\1/\2@p')
25+
link := $(install-dir)/.build-id/$$(shell $(READELF) -n $$(src) | sed -n 's@^.*Build ID: \(..\)\(.*\)@\1/\2@p').debug
2626

2727
__default: $$(link)
2828
$$(link): $$(dest) FORCE

0 commit comments

Comments
 (0)