New commits:
commit 916e3ee85a713d3f98839024308cb53853dfc631
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>
php: fixed dba selection if nothing added
diff --git a/php-pear/php/DEPENDS b/php-pear/php/DEPENDS
index bcc89af..0c4886a 100755
--- a/php-pear/php/DEPENDS
+++ b/php-pear/php/DEPENDS
@@ -160,12 +160,14 @@ fi &&
#DBA drivers
if list_find "${PHP5_OPTS}" "--enable-dba"; then
for foo in $PHP5_DBA_DRIVERS; do
+ if [[ $foo != none ]]; then
# handle the few special cases
if [[ "$foo" == "db4" ]]; then
depends db "--with-db4"
elif [[ "$foo" != "flatfile" ]] && [[ "$foo" != "inifile" ]];
then
depends $foo "--with-$foo"
fi
+ fi
done
fi &&