From 38d454a1022f65d76e292fd13d699da896c0c2cf Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 25 Jan 2013 19:18:12 +0100 Subject: [PATCH] Fix MAKE variable expansion in pcre-build.sh. Correct the syntax used in 0e32be2, it's ${var:-fallback}. --- Tools/pcre-build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/pcre-build.sh b/Tools/pcre-build.sh index 4af7deca3..92f645da2 100755 --- a/Tools/pcre-build.sh +++ b/Tools/pcre-build.sh @@ -48,8 +48,8 @@ echo "Configuring PCRE in directory: pcre" mv $pcre_dir pcre || bail "Could not create pcre directory" cd pcre && ./configure --prefix=$pcre_install_dir --disable-shared $* || bail "PCRE configure failed" echo "Building PCRE..." -${MAKE:make} -s || bail "Could not build PCRE" +${MAKE:-make} -s || bail "Could not build PCRE" echo "Installing PCRE locally to $pcre_install_dir..." -${MAKE:make} -s install || bail "Could not install PCRE" +${MAKE:-make} -s install || bail "Could not install PCRE" echo "" echo "The SWIG configure script can now be run, whereupon PCRE will automatically be detected and used from $pcre_install_dir/bin/pcre-config."