summaryrefslogtreecommitdiffstats
path: root/meta/classes/rootfsdebugfiles.bbclass
diff options
context:
space:
mode:
authorKonrad Weihmann <kweihmann@outlook.com>2020-07-08 13:09:35 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-07-27 10:37:53 +0100
commit8c835f63c2bca0a66385eb7ea5ec021d86265777 (patch)
tree8b05e42c08a0f80179ce3706d8be22f862b4b03e /meta/classes/rootfsdebugfiles.bbclass
parentffa4fa35e1f6132b19788166a2b87517d9e17d95 (diff)
downloadopenembedded-core-8c835f63c2bca0a66385eb7ea5ec021d86265777.tar.gz
rootfs-post: remove traling blanks from tasks
remove the traling blanks before the ;-delimiter, so one could use "_remove" to avoid running tasks like 'rootfs_update_timestamp', which are currently hardcoded and not bound to any configurable feature flag Signed-off-by: Konrad Weihmann <kweihmann@outlook.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/rootfsdebugfiles.bbclass')
-rw-r--r--meta/classes/rootfsdebugfiles.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/rootfsdebugfiles.bbclass b/meta/classes/rootfsdebugfiles.bbclass
index e2ba4e3647..85c7ec7434 100644
--- a/meta/classes/rootfsdebugfiles.bbclass
+++ b/meta/classes/rootfsdebugfiles.bbclass
@@ -28,7 +28,7 @@
ROOTFS_DEBUG_FILES ?= ""
ROOTFS_DEBUG_FILES[doc] = "Lists additional files or directories to be installed with 'cp -a' in the format 'source1 target1;source2 target2;...'"
-ROOTFS_POSTPROCESS_COMMAND += "rootfs_debug_files ;"
+ROOTFS_POSTPROCESS_COMMAND += "rootfs_debug_files;"
rootfs_debug_files () {
#!/bin/sh -e
echo "${ROOTFS_DEBUG_FILES}" | sed -e 's/;/\n/g' | while read source target mode; do