From eae5e432433409514af2c9c477d4b898e8adf86c Mon Sep 17 00:00:00 2001 From: Jani Taskinen Date: Mon, 20 Apr 2009 15:02:49 +0000 Subject: [PATCH] - Added path sanity check (autotools + libtool do not cope with whitespace..) --- scripts/phpize.in | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/scripts/phpize.in b/scripts/phpize.in index 70c6ebdf70..3adb8c8da4 100644 --- a/scripts/phpize.in +++ b/scripts/phpize.in @@ -80,6 +80,24 @@ Cannot find build files at '$phpdir'. Please check your PHP installation. EOF exit 1 fi + + case "$phpdir" in + *\ * | *\ *) + cat <