From c78cc0556feb66fc345bd8de5ddb8e3c2e50d54d Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 19 Feb 2013 14:31:52 -0800 Subject: bitbake: utils: Improve remove funciton to handle whitespace Improve the remove function to better handle cases where path contains special shell chars like whitespaces, '$', ';' or'\'. Thanks to Enrico Scholz for the fix. (Bitbake rev: 617511c9f86cc4ef52457653c8adff582d94bce3) Signed-off-by: Richard Purdie --- bitbake/lib/bb/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 8c363dfe20..b2f81c8a92 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py @@ -536,9 +536,9 @@ def remove(path, recurse=False): if not path: return if recurse: - import subprocess + import subprocess, glob # shutil.rmtree(name) would be ideal but its too slow - subprocess.call("rm -rf %s" % path, shell=True) + subprocess.call(['rm', '-rf'] + glob.glob(path)) return import os, errno, glob for name in glob.glob(path): -- cgit v1.2.3-54-g00ecf