mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 22:26:31 +00:00
php: convert old-style hooks to new-style hooks
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
e8ba6a5119
commit
c692a3e443
@ -166,23 +166,26 @@ ifeq ($(BR2_PACKAGE_PHP_EXT_PDO_MYSQL),y)
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
$(eval $(call AUTOTARGETS,package,php))
|
define PHP_INSTALL_FIXUP
|
||||||
|
|
||||||
$(PHP_HOOK_POST_INSTALL):
|
|
||||||
rm -rf $(TARGET_DIR)/usr/lib/php
|
rm -rf $(TARGET_DIR)/usr/lib/php
|
||||||
rm -f $(TARGET_DIR)/usr/bin/phpize
|
rm -f $(TARGET_DIR)/usr/bin/phpize
|
||||||
rm -f $(TARGET_DIR)/usr/bin/php-config
|
rm -f $(TARGET_DIR)/usr/bin/php-config
|
||||||
if [ ! -f $(TARGET_DIR)/etc/php.ini ]; then \
|
if [ ! -f $(TARGET_DIR)/etc/php.ini ]; then \
|
||||||
$(INSTALL) -m 0755 $(BR2_PACKAGE_PHP_CONFIG) $(TARGET_DIR)/etc/php.ini; fi
|
$(INSTALL) -m 0755 $(BR2_PACKAGE_PHP_CONFIG) $(TARGET_DIR)/etc/php.ini; fi
|
||||||
touch $@
|
endef
|
||||||
|
|
||||||
$(PHP_TARGET_UNINSTALL):
|
PHP_POST_INSTALL_TARGET_HOOKS += PHP_INSTALL_FIXUP
|
||||||
$(call MESSAGE,"Uninstalling")
|
|
||||||
|
define PHP_UNINSTALL_STAGING_CMDS
|
||||||
rm -rf $(STAGING_DIR)/usr/include/php
|
rm -rf $(STAGING_DIR)/usr/include/php
|
||||||
rm -rf $(STAGING_DIR)/usr/lib/php
|
rm -rf $(STAGING_DIR)/usr/lib/php
|
||||||
rm -f $(STAGING_DIR)/usr/bin/php*
|
rm -f $(STAGING_DIR)/usr/bin/php*
|
||||||
rm -f $(STAGING_DIR)/usr/share/man/man1/php*.1
|
rm -f $(STAGING_DIR)/usr/share/man/man1/php*.1
|
||||||
|
endef
|
||||||
|
|
||||||
|
define PHP_UNINSTALL_TARGET_CMDS
|
||||||
rm -f $(TARGET_DIR)/etc/php.ini
|
rm -f $(TARGET_DIR)/etc/php.ini
|
||||||
rm -f $(TARGET_DIR)/usr/bin/php*
|
rm -f $(TARGET_DIR)/usr/bin/php*
|
||||||
rm -f $(PHP_TARGET_INSTALL_TARGET) $(PHP_HOOK_POST_INSTALL)
|
endef
|
||||||
|
|
||||||
|
$(eval $(call AUTOTARGETS,package,php))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user