fix rootfs preparation with rootfs containing files with whitespaces in the filename (based on patch from #6551)
SVN-Revision: 19282
This commit is contained in:
parent
ad8700a22a
commit
42e4f83096
1 changed files with 3 additions and 3 deletions
|
@ -126,9 +126,9 @@ endif
|
||||||
|
|
||||||
|
|
||||||
define Image/mkfs/prepare/default
|
define Image/mkfs/prepare/default
|
||||||
- find $(TARGET_DIR) -type f -not -perm +0100 -not -name 'ssh_host*' | $(XARGS) chmod 0644
|
- $(FIND) $(TARGET_DIR) -type f -not -perm +0100 -not -name 'ssh_host*' -print0 | $(XARGS) -0 chmod 0644
|
||||||
- find $(TARGET_DIR) -type f -perm +0100 | $(XARGS) chmod 0755
|
- $(FIND) $(TARGET_DIR) -type f -perm +0100 -print0 | $(XARGS) -0 chmod 0755
|
||||||
- find $(TARGET_DIR) -type d | $(XARGS) chmod 0755
|
- $(FIND) $(TARGET_DIR) -type d -print0 | $(XARGS) -0 chmod 0755
|
||||||
$(INSTALL_DIR) $(TARGET_DIR)/tmp
|
$(INSTALL_DIR) $(TARGET_DIR)/tmp
|
||||||
chmod 0777 $(TARGET_DIR)/tmp
|
chmod 0777 $(TARGET_DIR)/tmp
|
||||||
endef
|
endef
|
||||||
|
|
Loading…
Reference in a new issue