From dc9c842f9cfd0f141b36147b584c7595b3f2521a Mon Sep 17 00:00:00 2001 From: Toyam Cox Date: Tue, 28 Feb 2017 12:53:12 -0500 Subject: [PATCH] build-arm-images.sh.in: fix typo --- build-arm-images.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-arm-images.sh.in b/build-arm-images.sh.in index 2d0c477..70baa94 100644 --- a/build-arm-images.sh.in +++ b/build-arm-images.sh.in @@ -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