mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 18:11:00 +03:00
Fix spl_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
8adf71e9b0
commit
fea77534f0
@ -34,7 +34,7 @@ install-data-local:
|
|||||||
release=$(SPL_META_VERSION)-$(SPL_META_RELEASE); \
|
release=$(SPL_META_VERSION)-$(SPL_META_RELEASE); \
|
||||||
instdest=$(DESTDIR)/usr/src/spl-$$release/$(LINUX_VERSION); \
|
instdest=$(DESTDIR)/usr/src/spl-$$release/$(LINUX_VERSION); \
|
||||||
for instfile in $(noinst_HEADERS) module/$(LINUX_SYMBOLS); do \
|
for instfile in $(noinst_HEADERS) module/$(LINUX_SYMBOLS); do \
|
||||||
$(INSTALL) -D $$instfile $$instdest/$$instfile; \
|
$(INSTALL) -m 644 -D $$instfile $$instdest/$$instfile; \
|
||||||
done
|
done
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ install-data-local:
|
|||||||
instdest=$(DESTDIR)/usr/src/spl-$$release/$(LINUX_VERSION); \
|
instdest=$(DESTDIR)/usr/src/spl-$$release/$(LINUX_VERSION); \
|
||||||
instfiles=`find . -name '*.h'`; \
|
instfiles=`find . -name '*.h'`; \
|
||||||
for instfile in $$instfiles; do \
|
for instfile in $$instfiles; do \
|
||||||
$(INSTALL) -D $$instfile $$instdest/$$instfile; \
|
$(INSTALL) -m 644 -D $$instfile $$instdest/$$instfile; \
|
||||||
done
|
done
|
||||||
|
|
||||||
uninstall-local:
|
uninstall-local:
|
||||||
|
Loading…
Reference in New Issue
Block a user