From 4cab543e1b2ba1a69b669ccebc3ecf7a053c5cad Mon Sep 17 00:00:00 2001 From: Michael James Gratton Date: Mon, 27 Feb 2017 21:34:36 +1100 Subject: [PATCH] Fix a shell warning running configure under flatpak-builder. --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index bf471170..86a029ff 100755 --- a/configure +++ b/configure @@ -73,7 +73,7 @@ do exit 0 ;; - --prefix) if [ -z "$value"]; then + --prefix) if [ -z "$value" ]; then # handle jhbuild's use of "--prefix /path" value="$2" shift @@ -85,7 +85,7 @@ do # ignored for autotools compatibility --bindir | --libdir | --sbindir | --datadir | --localstatedir | \ --includedir | --infodir | --sysconfdir | --mandir | --libexecdir) - if [ -z "$value"]; then + if [ -z "$value" ]; then # handle jhbuild's use of "--option /path" value="$2" shift