diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-06-22 18:45:41 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-06-22 18:45:41 -0400 |
commit | 6bc4c3ad3619e1bcb4a6330e030007ace8ca465e (patch) | |
tree | dda9505c22e85417ee752ef90ff7848126cca0f0 /tools | |
parent | c58267e9fa7b0345dd9006939254701e3622ca6a (diff) | |
parent | 0f02adaa49af23ab9fa05375f4a237da6014401b (diff) |
Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull perf fixes from Ingo Molnar:
"These are the left over fixes from the v4.1 cycle"
* 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
perf tools: Fix build breakage if prefix= is specified
perf/x86: Honor the architectural performance monitoring version
perf/x86/intel: Fix PMI handling for Intel PT
perf/x86/intel/bts: Fix DS area sharing with x86_pmu events
perf/x86: Add more Broadwell model numbers
perf: Fix ring_buffer_attach() RCU sync, again
Diffstat (limited to 'tools')
-rw-r--r-- | tools/build/Makefile.build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/build/Makefile.build b/tools/build/Makefile.build index 69c35cf09cad..a51244a8022f 100644 --- a/tools/build/Makefile.build +++ b/tools/build/Makefile.build | |||
@@ -94,12 +94,12 @@ obj-y := $(patsubst %/, %/$(obj)-in.o, $(obj-y)) | |||
94 | subdir-obj-y := $(filter %/$(obj)-in.o, $(obj-y)) | 94 | subdir-obj-y := $(filter %/$(obj)-in.o, $(obj-y)) |
95 | 95 | ||
96 | # '$(OUTPUT)/dir' prefix to all objects | 96 | # '$(OUTPUT)/dir' prefix to all objects |
97 | prefix := $(subst ./,,$(OUTPUT)$(dir)/) | 97 | objprefix := $(subst ./,,$(OUTPUT)$(dir)/) |
98 | obj-y := $(addprefix $(prefix),$(obj-y)) | 98 | obj-y := $(addprefix $(objprefix),$(obj-y)) |
99 | subdir-obj-y := $(addprefix $(prefix),$(subdir-obj-y)) | 99 | subdir-obj-y := $(addprefix $(objprefix),$(subdir-obj-y)) |
100 | 100 | ||
101 | # Final '$(obj)-in.o' object | 101 | # Final '$(obj)-in.o' object |
102 | in-target := $(prefix)$(obj)-in.o | 102 | in-target := $(objprefix)$(obj)-in.o |
103 | 103 | ||
104 | PHONY += $(subdir-y) | 104 | PHONY += $(subdir-y) |
105 | 105 | ||