summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2005-08-04 16:57:15 +0000
committerWez Furlong <wez@php.net>2005-08-04 16:57:15 +0000
commit7ba278b7b2b30e70c937a036c2cc912597e512d7 (patch)
treea7bc14834cbc50069af54b0a2f218f31ffd778d2 /scripts
parentf3d9a1adbd5781a8f8019338b467bd373241333b (diff)
downloadphp-git-7ba278b7b2b30e70c937a036c2cc912597e512d7.tar.gz
test -e doesn't work on solaris
Diffstat (limited to 'scripts')
-rw-r--r--scripts/phpize.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/phpize.in b/scripts/phpize.in
index 64399997ee..c9b81deb56 100644
--- a/scripts/phpize.in
+++ b/scripts/phpize.in
@@ -35,7 +35,7 @@ phpize_clean()
{
echo "Cleaning.."
for i in $CLEAN_FILES; do
- test -e $i && rm -rf $i
+ test -f $i && rm -rf $i
done
}