diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/utils.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index b1a0f25e75..8c363dfe20 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py | |||
@@ -535,14 +535,17 @@ def remove(path, recurse=False): | |||
535 | """Equivalent to rm -f or rm -rf""" | 535 | """Equivalent to rm -f or rm -rf""" |
536 | if not path: | 536 | if not path: |
537 | return | 537 | return |
538 | import os, errno, shutil, glob | 538 | if recurse: |
539 | import subprocess | ||
540 | # shutil.rmtree(name) would be ideal but its too slow | ||
541 | subprocess.call("rm -rf %s" % path, shell=True) | ||
542 | return | ||
543 | import os, errno, glob | ||
539 | for name in glob.glob(path): | 544 | for name in glob.glob(path): |
540 | try: | 545 | try: |
541 | os.unlink(name) | 546 | os.unlink(name) |
542 | except OSError as exc: | 547 | except OSError as exc: |
543 | if recurse and exc.errno == errno.EISDIR: | 548 | if exc.errno != errno.ENOENT: |
544 | shutil.rmtree(name) | ||
545 | elif exc.errno != errno.ENOENT: | ||
546 | raise | 549 | raise |
547 | 550 | ||
548 | def prunedir(topdir): | 551 | def prunedir(topdir): |