diff options
author | Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> | 2021-02-03 20:40:43 -0800 |
---|---|---|
committer | Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> | 2021-02-03 20:40:54 -0800 |
commit | d741a64b70cb992f9243c9a9e097f3942e115406 (patch) | |
tree | 09cc5a922fb413295bef6bf7883883b4385846cb | |
parent | c01ce53579218319d5f6fb65064fa255b87a1065 (diff) |
lang/php7: Don't run phpize7 with QUILT
Allows targets such as prepare, refresh, or update to be run without
building dependencies for easier patch maintenance.
Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
-rw-r--r-- | lang/php7/pecl.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/php7/pecl.mk b/lang/php7/pecl.mk index 82f90df24..d85e8d139 100644 --- a/lang/php7/pecl.mk +++ b/lang/php7/pecl.mk @@ -13,7 +13,7 @@ endef define Build/Prepare $(Build/Prepare/Default) - ( cd $(PKG_BUILD_DIR); $(STAGING_DIR)/usr/bin/phpize7 ) + $(if $(QUILT),,( cd $(PKG_BUILD_DIR); $(STAGING_DIR)/usr/bin/phpize7 )) endef CONFIGURE_VARS+= \ |