diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2015-04-08 22:02:16 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-09 11:54:48 +0200 |
commit | 86071180d4c2072f93363313761339fa89ad917a (patch) | |
tree | 2248260521f41ec1dbdfec2cbbdf95b70132a896 | |
parent | 96484d07fca60d5409e132abcc950e95a872a974 (diff) | |
download | buildroot-86071180d4c2072f93363313761339fa89ad917a.tar.gz buildroot-86071180d4c2072f93363313761339fa89ad917a.zip |
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 <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/php/php.mk | 2 |
1 files changed, 1 insertions, 1 deletions
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 |