From 150c0b11b3d67dabb4d3f79c19dedbce2d32616b Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Thu, 4 Feb 2016 16:39:56 +0100 Subject: [PATCH] hooks/pre-configure/00-gnu-configure-asneeded.sh: don't error on $configure_script with spaces. --- common/hooks/pre-configure/00-gnu-configure-asneeded.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/hooks/pre-configure/00-gnu-configure-asneeded.sh b/common/hooks/pre-configure/00-gnu-configure-asneeded.sh index 708a0bbc7b4..61ea97998e4 100644 --- a/common/hooks/pre-configure/00-gnu-configure-asneeded.sh +++ b/common/hooks/pre-configure/00-gnu-configure-asneeded.sh @@ -3,7 +3,7 @@ hook() { : ${configure_script:=./configure} - if [ ! -f ${configure_script} ]; then + if [ ! -f "${configure_script}" ]; then return 0 fi # http://lists.gnu.org/archive/html/libtool-patches/2004-06/msg00002.html