From 235acd628a6e23e3ec79a758e1ae4a7558ecf07e Mon Sep 17 00:00:00 2001 From: Lang Daniel Date: Tue, 17 May 2022 10:32:12 +0000 Subject: [PATCH] toolchain: handle white spaces in sysroot dir in copy_toolchain_sysroot When changing permissions on all directories in the staging directory, after copying sysroot, paths that contain spaces break the call to chmod. With -print0 for find and -0 for xargs white spaces are correctly interpreted. Signed-off-by: Daniel Lang Signed-off-by: Thomas Petazzoni --- toolchain/helpers.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/helpers.mk b/toolchain/helpers.mk index ef8e9a5f64..eec46d44c6 100644 --- a/toolchain/helpers.mk +++ b/toolchain/helpers.mk @@ -150,7 +150,7 @@ copy_toolchain_sysroot = \ if test -n "$${SUPPORT_LIB_DIR}" ; then \ cp -a $${SUPPORT_LIB_DIR}/* $(STAGING_DIR)/lib/ ; \ fi ; \ - find $(STAGING_DIR) -type d | xargs chmod 755 + find $(STAGING_DIR) -type d -print0 | xargs -0 chmod 755 # # Check the specified kernel headers version actually matches the