aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/oe/unpack.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/oe/unpack.py b/lib/oe/unpack.py
index 8e8bf36408..fa517d83b4 100644
--- a/lib/oe/unpack.py
+++ b/lib/oe/unpack.py
@@ -96,6 +96,8 @@ def unpack_file(file, destdir, parameters, env=None):
if dos:
cmd = '%s -a' % cmd
cmd = "%s '%s'" % (cmd, file)
+ elif file.endswith('.rar'):
+ cmd = 'unrar x %s' % file
if not unpack or not cmd:
if os.path.isdir(file):