build-arm-images.sh.in: fix typo

This commit is contained in:
Toyam Cox 2017-02-28 12:53:12 -05:00
parent 2df9a27e8d
commit dc9c842f9c

View File

@ -15,7 +15,7 @@ for f in ${PLATFORMS} x ${PLATFORMS} ; do
if [ -n "$musl" ]; then
target=${f}-musl
fi
if [ -z "$ARGET" -o "$TARGET" = "$target" ]; then
if [ -z "$TARGET" -o "$TARGET" = "$target" ]; then
./mkrootfs.sh $@ $target && ./mkimage.sh void-${target}-rootfs-${DATE}.tar.xz && xz -T0 -9 void-${target}-${DATE}.img
fi
done