From 8393525511ba3ec5d60ffc0f7bcdcf83bc050c80 Mon Sep 17 00:00:00 2001 From: Jani Taskinen Date: Mon, 20 Apr 2009 15:03:21 +0000 Subject: [PATCH] MFH:- Added path sanity check (autotools + libtool do not cope with whitespace..) --- scripts/phpize.in | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/scripts/phpize.in b/scripts/phpize.in index 35f7dc7272..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 <