hooks/pre-configure/00-gnu-configure-asneeded.sh: don't error on $configure_script with spaces.

This commit is contained in:
Christian Neukirchen 2016-02-04 16:39:56 +01:00
parent 598efd678c
commit 150c0b11b3
1 changed files with 1 additions and 1 deletions

View File

@ -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