From: Gustavo Zacarias Date: Thu, 9 Apr 2015 01:02:16 +0000 (-0300) Subject: php: use TARGET_MAKE_ENV for buildconf X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=86071180d4c2072f93363313761339fa89ad917a;p=buildroot.git php: use TARGET_MAKE_ENV for buildconf Otherwise we miss the PATH for hosts that lack autotools. Fixes: http://autobuild.buildroot.net/results/368/368da962f657801817a4b962415e55606915c871/ Signed-off-by: Gustavo Zacarias Signed-off-by: Thomas Petazzoni --- diff --git a/package/php/php.mk b/package/php/php.mk index eb4f79749f..f3556327ab 100644 --- a/package/php/php.mk +++ b/package/php/php.mk @@ -25,7 +25,7 @@ PHP_CONF_ENV = EXTRA_LIBS="$(PHP_EXTRA_LIBS)" # PHP can't be AUTORECONFed the standard way unfortunately PHP_DEPENDENCIES += host-autoconf host-automake host-libtool define PHP_BUILDCONF - cd $(@D) ; ./buildconf --force + cd $(@D) ; $(TARGET_MAKE_ENV) ./buildconf --force endef PHP_PRE_CONFIGURE_HOOKS += PHP_BUILDCONF