diff options
author | Josh Boyer <jwboyer@redhat.com> | 2012-10-30 13:38:05 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-11-30 01:09:45 -0500 |
commit | 55f1f545f709a6023371848028a3029118855576 (patch) | |
tree | 5331928fe5745ff09cbfaa41fccf48f137965e43 /tools | |
parent | ee0778a3015370779f603d2b6119a6ec2b1c811a (diff) |
tools: Allow tools to be installed in a user specified location
When building x86_energy_perf_policy or turbostat within the confines of
a packaging system such as RPM, we need to be able to have it install to
the buildroot and not the root filesystem of the build machine. This
adds a DESTDIR variable that when set will act as a prefix for the
install location of these tools.
Signed-off-by: Josh Boyer <jwboyer@redhat.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/power/x86/x86_energy_perf_policy/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/power/x86/x86_energy_perf_policy/Makefile b/tools/power/x86/x86_energy_perf_policy/Makefile index f458237fdd79..971c9ffdcb50 100644 --- a/tools/power/x86/x86_energy_perf_policy/Makefile +++ b/tools/power/x86/x86_energy_perf_policy/Makefile | |||
@@ -1,8 +1,10 @@ | |||
1 | DESTDIR ?= | ||
2 | |||
1 | x86_energy_perf_policy : x86_energy_perf_policy.c | 3 | x86_energy_perf_policy : x86_energy_perf_policy.c |
2 | 4 | ||
3 | clean : | 5 | clean : |
4 | rm -f x86_energy_perf_policy | 6 | rm -f x86_energy_perf_policy |
5 | 7 | ||
6 | install : | 8 | install : |
7 | install x86_energy_perf_policy /usr/bin/ | 9 | install x86_energy_perf_policy ${DESTDIR}/usr/bin/ |
8 | install x86_energy_perf_policy.8 /usr/share/man/man8/ | 10 | install x86_energy_perf_policy.8 ${DESTDIR}/usr/share/man/man8/ |