diff options
author | aliguori | 2009-01-22 18:15:21 +0100 |
---|---|---|
committer | aliguori | 2009-01-22 18:15:21 +0100 |
commit | 6473e68fa806b4eb65ad9e4f9cdf58240ff16e57 (patch) | |
tree | dcccd68112a0e4c74c417ae2ae7b4a8169264fc4 /Makefile | |
parent | monitor-mux: fix timestamp prefixes (Jan Kiszka) (diff) | |
download | qemu-6473e68fa806b4eb65ad9e4f9cdf58240ff16e57.tar.gz qemu-6473e68fa806b4eb65ad9e4f9cdf58240ff16e57.tar.xz qemu-6473e68fa806b4eb65ad9e4f9cdf58240ff16e57.zip |
install man-pages as non-executables (Andre Przywara)
make install-doc omits an explicit permission mask for the man-pages. This
defaults to have the executable bits set. Adding "-m 644" (for rw-r--r--)
fixes that.
Signed-off-by: Andre Przywara <andre.przywara@amd.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6400 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -224,9 +224,9 @@ install-doc: $(DOCS) $(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)" ifndef CONFIG_WIN32 mkdir -p "$(DESTDIR)$(mandir)/man1" - $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1" + $(INSTALL) -m 644 qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1" mkdir -p "$(DESTDIR)$(mandir)/man8" - $(INSTALL) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8" + $(INSTALL) -m 644 qemu-nbd.8 "$(DESTDIR)$(mandir)/man8" endif install: all $(if $(BUILD_DOCS),install-doc) |