hooks/pre-configure/00-gnu-configure-asneeded.sh: don't error on $configure_script with spaces.
This commit is contained in:
parent
598efd678c
commit
150c0b11b3
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue