From: Peter Korsgaard Date: Wed, 4 Mar 2009 20:58:12 +0000 (-0000) Subject: php: only overwrite php.ini if not present in target_skeleton X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ee0bbc04ff0314526400e8b721dbcccb32eda913;p=buildroot.git php: only overwrite php.ini if not present in target_skeleton Allow platforms to provide a custom php.ini in their target_skeleton. --- diff --git a/package/php/php.mk b/package/php/php.mk index 1f20039f87..ac8f9cdc2e 100644 --- a/package/php/php.mk +++ b/package/php/php.mk @@ -169,7 +169,8 @@ $(PHP_HOOK_POST_INSTALL): rm -rf $(TARGET_DIR)/usr/lib/php rm -f $(TARGET_DIR)/usr/bin/phpize rm -f $(TARGET_DIR)/usr/bin/php-config - $(INSTALL) -m 0755 $(BR2_PACKAGE_PHP_CONFIG) $(TARGET_DIR)/etc/php.ini + if [ ! -f $(TARGET_DIR)/etc/php.ini ]; then \ + $(INSTALL) -m 0755 $(BR2_PACKAGE_PHP_CONFIG) $(TARGET_DIR)/etc/php.ini; fi $(PHP_TARGET_UNINSTALL): $(call MESSAGE,"Uninstalling")