diff options
author | Kees Cook <keescook@chromium.org> | 2016-08-01 14:18:34 -0700 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2016-08-01 14:27:24 -0700 |
commit | e50bd2354ced2018eff1c7e06e7db4db1f5ce745 (patch) | |
tree | 604c2f7960f51c1d7ea78facb41368b26b886945 /drivers | |
parent | 300108740b659c2380a731f147dd85ca0365db4f (diff) | |
download | linux-e50bd2354ced2018eff1c7e06e7db4db1f5ce745.tar.bz2 |
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')
-rw-r--r-- | drivers/misc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile index 4387ccb79e64..7410c6d9a34d 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) |