Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Laura Abbott and committed by
Len Brown
e29dc460 94d6ab4b

+2 -2
+1 -1
tools/power/x86/turbostat/Makefile
··· 25 25 install -d $(DESTDIR)$(PREFIX)/bin 26 26 install $(BUILD_OUTPUT)/turbostat $(DESTDIR)$(PREFIX)/bin/turbostat 27 27 install -d $(DESTDIR)$(PREFIX)/share/man/man8 28 - install turbostat.8 $(DESTDIR)$(PREFIX)/share/man/man8 28 + install -m 644 turbostat.8 $(DESTDIR)$(PREFIX)/share/man/man8
+1 -1
tools/power/x86/x86_energy_perf_policy/Makefile
··· 24 24 install -d $(DESTDIR)$(PREFIX)/bin 25 25 install $(BUILD_OUTPUT)/x86_energy_perf_policy $(DESTDIR)$(PREFIX)/bin/x86_energy_perf_policy 26 26 install -d $(DESTDIR)$(PREFIX)/share/man/man8 27 - install x86_energy_perf_policy.8 $(DESTDIR)$(PREFIX)/share/man/man8 27 + install -m 644 x86_energy_perf_policy.8 $(DESTDIR)$(PREFIX)/share/man/man8 28 28