diff options
author | John Voltz <john.voltz@gmail.com> | 2008-03-11 18:14:42 +0000 |
---|---|---|
committer | John Voltz <john.voltz@gmail.com> | 2008-03-11 18:14:42 +0000 |
commit | 554fc8bc7f88cccd3f2f0966b830c9574c64ad63 (patch) | |
tree | 238516696247acc341c08cc043306de54d1abfd3 /package | |
parent | 1163cf741c5fb689118c12f25a99ee0142d18dff (diff) | |
download | buildroot-novena-554fc8bc7f88cccd3f2f0966b830c9574c64ad63.tar.gz buildroot-novena-554fc8bc7f88cccd3f2f0966b830c9574c64ad63.zip |
fixes for php makefile
Diffstat (limited to 'package')
-rw-r--r-- | package/php/php.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/php/php.mk b/package/php/php.mk index 6d5d0e8e1..195d4669e 100644 --- a/package/php/php.mk +++ b/package/php/php.mk @@ -111,13 +111,14 @@ ifeq ($(BR2_PACKAGE_PHP_EXT_SQLITE_UTF8),y) endif endif ifeq ($(BR2_PACKAGE_PHP_EXT_PDO),y) - PHP_CONFIGURE+=--with-pdo ifeq ($(BR2_PACKAGE_PHP_EXT_PDO_SQLITE),y) PHP_CONFIGURE+=--with-pdo-sqlite endif ifeq ($(BR2_PACKAGE_PHP_EXT_PDO_MYSQL),y) - PHP_CONFIGURE+=--with-pod-mysql + PHP_CONFIGURE+=--with-pdo-mysql endif +else + PHP_CONFIGURE+=--without-pdo-sqlite endif $(DL_DIR)/$(PHP_SOURCE): |