diff options
author | Laura Abbott <labbott@redhat.com> | 2017-12-20 05:02:31 +0100 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2018-06-01 23:15:09 +0200 |
commit | e29dc460d6c5ec43967ea69cb28120a93a20e904 (patch) | |
tree | bdcfe51938a26a0a340eaa8e99c1f84a88971109 /tools/power/x86/turbostat/Makefile | |
parent | tools/power turbostat: remove blank lines (diff) | |
download | linux-e29dc460d6c5ec43967ea69cb28120a93a20e904.tar.xz linux-e29dc460d6c5ec43967ea69cb28120a93a20e904.zip |
tools/power turbostat: Don't make man pages executable
rpm-lint flagged these as being executable:
kernel-tools.x86_64: W: spurious-executable-perm /usr/share/man/man8/turbostat.8.gz
kernel-tools.x86_64: W: spurious-executable-perm /usr/share/man/man8/x86_energy_perf_policy.8.gz
Fix this
Signed-off-by: Laura Abbott <labbott@redhat.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'tools/power/x86/turbostat/Makefile')
-rw-r--r-- | tools/power/x86/turbostat/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/power/x86/turbostat/Makefile b/tools/power/x86/turbostat/Makefile index a9bc914a8fe8..2ab25aa38263 100644 --- a/tools/power/x86/turbostat/Makefile +++ b/tools/power/x86/turbostat/Makefile @@ -25,4 +25,4 @@ install : turbostat install -d $(DESTDIR)$(PREFIX)/bin install $(BUILD_OUTPUT)/turbostat $(DESTDIR)$(PREFIX)/bin/turbostat install -d $(DESTDIR)$(PREFIX)/share/man/man8 - install turbostat.8 $(DESTDIR)$(PREFIX)/share/man/man8 + install -m 644 turbostat.8 $(DESTDIR)$(PREFIX)/share/man/man8 |