aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/Makefile
diff options
context:
space:
mode:
authorKees Cook <keescook@chromium.org>2016-08-01 14:18:34 -0700
committerKees Cook <keescook@chromium.org>2016-08-01 14:27:24 -0700
commite50bd2354ced2018eff1c7e06e7db4db1f5ce745 (patch)
tree604c2f7960f51c1d7ea78facb41368b26b886945 /drivers/misc/Makefile
parent300108740b659c2380a731f147dd85ca0365db4f (diff)
downloadlinux-e50bd2354ced2018eff1c7e06e7db4db1f5ce745.tar.gz
lkdtm: Fix targets for objcopy usage
The targets for lkdtm's objcopy were missing which caused them to always be rebuilt. This corrects the problem. Reported-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'drivers/misc/Makefile')
-rw-r--r--drivers/misc/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile
index 4387ccb79e642..7410c6d9a34db 100644
--- a/drivers/misc/Makefile
+++ b/drivers/misc/Makefile
@@ -69,5 +69,6 @@ OBJCOPYFLAGS :=
OBJCOPYFLAGS_lkdtm_rodata_objcopy.o := \
--set-section-flags .text=alloc,readonly \
--rename-section .text=.rodata
-$(obj)/lkdtm_rodata_objcopy.o: $(obj)/lkdtm_rodata.o
+targets += lkdtm_rodata.o lkdtm_rodata_objcopy.o
+$(obj)/lkdtm_rodata_objcopy.o: $(obj)/lkdtm_rodata.o FORCE
$(call if_changed,objcopy)