From fd2b4aa71a53f3565522675de97b872c104383f4 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Fri, 8 Feb 2013 13:51:27 -0800 Subject: [PATCH] Fix zfs_config.h install permissions The default permissions used by install are 755. Since this file isn't executable 644 is more appropriate. Signed-off-by: Brian Behlendorf --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 833bee6..e47e571 100644 --- a/Makefile.am +++ b/Makefile.am @@ -36,7 +36,7 @@ install-data-local: release=$(ZFS_META_VERSION)-$(ZFS_META_RELEASE); \ instdest=$(DESTDIR)/usr/src/zfs-$$release/$(LINUX_VERSION); \ for instfile in $(noinst_HEADERS) module/$(LINUX_SYMBOLS); do \ - $(INSTALL) -D $$instfile $$instdest/$$instfile; \ + $(INSTALL) -m 644 -D $$instfile $$instdest/$$instfile; \ done endif -- 1.8.3.1