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 <behlendorf1@llnl.gov>
This commit is contained in:
parent
48c028f5a5
commit
fd2b4aa71a
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue