diff options
author | Thomas D <whissi@whissi.de> | 2015-01-05 15:37:23 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2015-04-18 14:20:51 -0400 |
commit | f82263c6989c31ae9b94cecddffb29dcbec38710 (patch) | |
tree | 5247536d896be90c92b37cc3d1e0b7cfd88657f2 /tools | |
parent | a21d38c846fce05ef55ab240f18fb19755bed16a (diff) |
tools/power turbostat: Use $(CURDIR) instead of $(PWD) and add support for O= option in Makefile
Since commit ee0778a30153
("tools/power: turbostat: make Makefile a bit more capable")
turbostat's Makefile is using
[...]
BUILD_OUTPUT := $(PWD)
[...]
which obviously causes trouble when building "turbostat" with
make -C /usr/src/linux/tools/power/x86/turbostat ARCH=x86 turbostat
because GNU make does not update nor guarantee that $PWD is set.
This patch changes the Makefile to use $CURDIR instead, which GNU make
guarantees to set and update (i.e. when using "make -C ...") and also
adds support for the O= option (see "make help" in your root of your
kernel source tree for more details).
Link: https://bugs.gentoo.org/show_bug.cgi?id=533918
Fixes: ee0778a30153 ("tools/power: turbostat: make Makefile a bit more capable")
Signed-off-by: Thomas D. <whissi@whissi.de>
Cc: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/power/x86/turbostat/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/power/x86/turbostat/Makefile b/tools/power/x86/turbostat/Makefile index d1b3a361e526..4039854560d0 100644 --- a/tools/power/x86/turbostat/Makefile +++ b/tools/power/x86/turbostat/Makefile | |||
@@ -1,8 +1,12 @@ | |||
1 | CC = $(CROSS_COMPILE)gcc | 1 | CC = $(CROSS_COMPILE)gcc |
2 | BUILD_OUTPUT := $(PWD) | 2 | BUILD_OUTPUT := $(CURDIR) |
3 | PREFIX := /usr | 3 | PREFIX := /usr |
4 | DESTDIR := | 4 | DESTDIR := |
5 | 5 | ||
6 | ifeq ("$(origin O)", "command line") | ||
7 | BUILD_OUTPUT := $(O) | ||
8 | endif | ||
9 | |||
6 | turbostat : turbostat.c | 10 | turbostat : turbostat.c |
7 | CFLAGS += -Wall | 11 | CFLAGS += -Wall |
8 | CFLAGS += -DMSRHEADER='"../../../../arch/x86/include/uapi/asm/msr-index.h"' | 12 | CFLAGS += -DMSRHEADER='"../../../../arch/x86/include/uapi/asm/msr-index.h"' |