summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohamad Ayyash <mkayyash@google.com>2015-06-24 23:13:59 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-06-24 23:13:59 +0000
commitb62f59011df99c4e5b1360146f10b0ea0ae112e7 (patch)
tree3a2145894c86628ba929c4b82ec01cd4459bfc2f
parentb002d0728e410493d42bfa74c0ac138366afd793 (diff)
parentbaa6e454966e33941dddfe21129e4b40dfdad3ca (diff)
downloadextras-b62f59011df99c4e5b1360146f10b0ea0ae112e7.tar.gz
Merge "mksquashfsimage.sh: Add forward slash for SRC_DIR" into mnc-dev
-rwxr-xr-xsquashfs_utils/mksquashfsimage.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/squashfs_utils/mksquashfsimage.sh b/squashfs_utils/mksquashfsimage.sh
index 7f96cb1f..dbf71669 100755
--- a/squashfs_utils/mksquashfsimage.sh
+++ b/squashfs_utils/mksquashfsimage.sh
@@ -53,7 +53,7 @@ if [ -n "$BLOCK_SIZE" ]; then
OPT="$OPT -b $BLOCK_SIZE"
fi
-MAKE_SQUASHFS_CMD="mksquashfs $SRC_DIR $OUTPUT_FILE -no-progress -comp lz4 -Xhc -no-exports -noappend -no-recovery -android-fs-config $OPT"
+MAKE_SQUASHFS_CMD="mksquashfs $SRC_DIR/ $OUTPUT_FILE -no-progress -comp lz4 -Xhc -no-exports -noappend -no-recovery -android-fs-config $OPT"
echo $MAKE_SQUASHFS_CMD
$MAKE_SQUASHFS_CMD
if [ $? -ne 0 ]; then