From: Martin Kelly <mkelly@xevo.com>
Date: Wed, 15 Mar 2017 21:58:00 +0000 (-0700)
Subject: meta-rcar: don't cd; just unzip
X-Git-Tag: 3.99.1~146
X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=06f0b1a602c4c6179b22e613160ac4298db8ff3a;p=AGL%2Fmeta-agl.git

meta-rcar: don't cd; just unzip

This is slightly cleaner and better for handling failure cases.

Change-Id: I824308fc7c8ca8def86b7470a5226a6eff91f51c
Signed-off-by: Martin Kelly <mkelly@xevo.com>
---

diff --git a/meta-agl-bsp/meta-rcar-gen3/scripts/setup_mm_packages.sh b/meta-agl-bsp/meta-rcar-gen3/scripts/setup_mm_packages.sh
index 83ccd5097..bd82f4e36 100644
--- a/meta-agl-bsp/meta-rcar-gen3/scripts/setup_mm_packages.sh
+++ b/meta-agl-bsp/meta-rcar-gen3/scripts/setup_mm_packages.sh
@@ -12,10 +12,8 @@ function copy_mm_packages() {
         if [ ! -d $METADIR/binary-tmp ]; then
                 if [ -f $DOWNLOAD_DIR/$ZIP_1 -a -f $DOWNLOAD_DIR/$ZIP_2 ]; then
                         mkdir $METADIR/binary-tmp
-                        cd $METADIR/binary-tmp
-                        unzip -o $DOWNLOAD_DIR/$ZIP_1
-                        unzip -o $DOWNLOAD_DIR/$ZIP_2
-                        cd -
+                        unzip -o $DOWNLOAD_DIR/$ZIP_1 -d $METADIR/binary-tmp
+                        unzip -o $DOWNLOAD_DIR/$ZIP_2 -d $METADIR/binary-tmp
                 else
                         echo -n "The graphics and multimedia acceleration packages for "
                         echo -e "the R-Car Gen3 board can be download from :"