diff options
Diffstat (limited to 'bitbake/lib/bb/utils.py')
| -rw-r--r-- | bitbake/lib/bb/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 077fddc0ee..6a44db57d7 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py | |||
| @@ -680,7 +680,7 @@ def remove(path, recurse=False): | |||
| 680 | if _check_unsafe_delete_path(path): | 680 | if _check_unsafe_delete_path(path): |
| 681 | raise Exception('bb.utils.remove: called with dangerous path "%s" and recurse=True, refusing to delete!' % path) | 681 | raise Exception('bb.utils.remove: called with dangerous path "%s" and recurse=True, refusing to delete!' % path) |
| 682 | # shutil.rmtree(name) would be ideal but its too slow | 682 | # shutil.rmtree(name) would be ideal but its too slow |
| 683 | subprocess.call(['rm', '-rf'] + glob.glob(path)) | 683 | subprocess.check_call(['rm', '-rf'] + glob.glob(path)) |
| 684 | return | 684 | return |
| 685 | for name in glob.glob(path): | 685 | for name in glob.glob(path): |
| 686 | try: | 686 | try: |
