package: use variables defined by autoconf.mk

autoconf.mk defines AUTOCONF and AUTOHEADER variables, use them in packages
using autoconf.
This is a refactoring which shouldn't impact the final behavior.

Signed-off-by: Nicolas Carrier <nicolas.carrier@orolia.com>
Reviewed-by: Romain Naour <romain.naour@smile.fr>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Nicolas Carrier 2019-10-25 18:22:43 +00:00 committed by Yann E. MORIN
parent 64c42c5e2c
commit 3292f3de49
12 changed files with 20 additions and 20 deletions

View File

@ -13,7 +13,7 @@ CUPS_INSTALL_STAGING = YES
# Using autoconf, not autoheader, so we cannot use AUTORECONF = YES.
define CUPS_RUN_AUTOCONF
cd $(@D); $(HOST_DIR)/bin/autoconf -f
cd $(@D); $(AUTOCONF) -f
endef
CUPS_PRE_CONFIGURE_HOOKS += CUPS_RUN_AUTOCONF

View File

@ -16,7 +16,7 @@ LIBXMLRPC_MAKE = $(MAKE1)
# Using autoconf, not automake, so we cannot use AUTORECONF = YES.
define LIBXMLRPC_RUN_AUTOCONF
cd $(@D); $(HOST_DIR)/bin/autoconf
cd $(@D); $(AUTOCONF)
endef
LIBXMLRPC_PRE_CONFIGURE_HOOKS += LIBXMLRPC_RUN_AUTOCONF

View File

@ -21,7 +21,7 @@ NCFTP_CONF_OPTS = --disable-ccdv
# We need to pass -I because of the non-standard m4 directory name, and
# none of the other autotools are used, so the below is the easiest.
define NCFTP_RUN_AUTOCONF
(cd $(@D); $(HOST_DIR)/bin/autoconf -I$(@D)/autoconf_local/)
(cd $(@D); $(AUTOCONF) -I$(@D)/autoconf_local/)
endef
NCFTP_PRE_CONFIGURE_HOOKS += NCFTP_RUN_AUTOCONF

View File

@ -16,8 +16,8 @@ PHP_AMQP_LICENSE_FILES = LICENSE
define PHP_AMQP_PHPIZE
(cd $(@D); \
PHP_AUTOCONF=$(HOST_DIR)/bin/autoconf \
PHP_AUTOHEADER=$(HOST_DIR)/bin/autoheader \
PHP_AUTOCONF=$(AUTOCONF) \
PHP_AUTOHEADER=$(AUTOHEADER) \
$(STAGING_DIR)/usr/bin/phpize)
endef

View File

@ -16,8 +16,8 @@ PHP_GEOIP_LICENSE_FILES = geoip.c
define PHP_GEOIP_PHPIZE
(cd $(@D); \
PHP_AUTOCONF=$(HOST_DIR)/bin/autoconf \
PHP_AUTOHEADER=$(HOST_DIR)/bin/autoheader \
PHP_AUTOCONF=$(AUTOCONF) \
PHP_AUTOHEADER=$(AUTOHEADER) \
$(STAGING_DIR)/usr/bin/phpize)
endef

View File

@ -16,8 +16,8 @@ PHP_GNUPG_LICENSE_FILES = LICENSE
define PHP_GNUPG_PHPIZE
(cd $(@D); \
PHP_AUTOCONF=$(HOST_DIR)/bin/autoconf \
PHP_AUTOHEADER=$(HOST_DIR)/bin/autoheader \
PHP_AUTOCONF=$(AUTOCONF) \
PHP_AUTOHEADER=$(AUTOHEADER) \
$(STAGING_DIR)/usr/bin/phpize)
endef

View File

@ -16,8 +16,8 @@ PHP_IMAGICK_LICENSE_FILES = LICENSE
define PHP_IMAGICK_PHPIZE
(cd $(@D); \
PHP_AUTOCONF=$(HOST_DIR)/bin/autoconf \
PHP_AUTOHEADER=$(HOST_DIR)/bin/autoheader \
PHP_AUTOCONF=$(AUTOCONF) \
PHP_AUTOHEADER=$(AUTOHEADER) \
$(STAGING_DIR)/usr/bin/phpize)
endef

View File

@ -18,8 +18,8 @@ PHP_MEMCACHED_LICENSE_FILES = LICENSE fastlz/LICENSE g_fmt.h
define PHP_MEMCACHED_PHPIZE
(cd $(@D); \
PHP_AUTOCONF=$(HOST_DIR)/bin/autoconf \
PHP_AUTOHEADER=$(HOST_DIR)/bin/autoheader \
PHP_AUTOCONF=$(AUTOCONF) \
PHP_AUTOHEADER=$(AUTOHEADER) \
$(STAGING_DIR)/usr/bin/phpize)
endef

View File

@ -16,8 +16,8 @@ PHP_SSH2_LICENSE_FILES = LICENSE
define PHP_SSH2_PHPIZE
(cd $(@D); \
PHP_AUTOCONF=$(HOST_DIR)/bin/autoconf \
PHP_AUTOHEADER=$(HOST_DIR)/bin/autoheader \
PHP_AUTOCONF=$(AUTOCONF) \
PHP_AUTOHEADER=$(AUTOHEADER) \
$(STAGING_DIR)/usr/bin/phpize)
endef

View File

@ -16,8 +16,8 @@ PHP_YAML_LICENSE_FILES = LICENSE
define PHP_YAML_PHPIZE
(cd $(@D); \
PHP_AUTOCONF=$(HOST_DIR)/bin/autoconf \
PHP_AUTOHEADER=$(HOST_DIR)/bin/autoheader \
PHP_AUTOCONF=$(AUTOCONF) \
PHP_AUTOHEADER=$(AUTOHEADER) \
$(STAGING_DIR)/usr/bin/phpize)
endef

View File

@ -15,8 +15,8 @@ PHP_ZMQ_LICENSE_FILES = LICENSE
define PHP_ZMQ_PHPIZE
(cd $(@D); \
PHP_AUTOCONF=$(HOST_DIR)/bin/autoconf \
PHP_AUTOHEADER=$(HOST_DIR)/bin/autoheader \
PHP_AUTOCONF=$(AUTOCONF) \
PHP_AUTOHEADER=$(AUTOHEADER) \
$(STAGING_DIR)/usr/bin/phpize)
endef

View File

@ -37,7 +37,7 @@ SOCAT_CONF_OPTS += --disable-openssl
endif
define SOCAT_RUN_AUTOCONF
(cd $(@D); $(HOST_DIR)/bin/autoconf)
(cd $(@D); $(AUTOCONF))
endef
SOCAT_PRE_CONFIGURE_HOOKS += SOCAT_RUN_AUTOCONF