diff options
Diffstat (limited to 'meta/lib')
| -rw-r--r-- | meta/lib/oe/path.py | 17 | 
1 files changed, 9 insertions, 8 deletions
| diff --git a/meta/lib/oe/path.py b/meta/lib/oe/path.py index f58c0138bb..183f205757 100644 --- a/meta/lib/oe/path.py +++ b/meta/lib/oe/path.py @@ -45,14 +45,15 @@ def format_display(path, metadata):  def remove(path):      """Equivalent to rm -f or rm -rf""" -    import os, errno, shutil -    try: -        os.unlink(path) -    except OSError, exc: -        if exc.errno == errno.EISDIR: -            shutil.rmtree(path) -        elif exc.errno != errno.ENOENT: -            raise +    import os, errno, shutil, glob +    for name in glob.glob(path): +        try: +            os.unlink(name) +        except OSError, exc: +            if exc.errno == errno.EISDIR: +                shutil.rmtree(path) +            elif exc.errno != errno.ENOENT: +                raise  def symlink(source, destination, force=False):      """Create a symbolic link""" | 
