]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
perl: use $(HOST_MAKE_ENV) when calling $(MAKE)
authorGustavo Zacarias <gustavo.zacarias@free-electrons.com>
Fri, 28 Oct 2016 13:18:25 +0000 (10:18 -0300)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 29 Oct 2016 13:53:49 +0000 (15:53 +0200)
Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/perl/perl.mk

index 56fc5790ef72aed5a3120d412e83addfcc15b3ef..84af75d07c70e814a9d3725eec8dfa4ed9a12c28 100644 (file)
@@ -104,15 +104,16 @@ HOST_PERL_CONF_OPTS = \
        -Dcc="$(HOSTCC)"
 
 define HOST_PERL_CONFIGURE_CMDS
-       (cd $(@D); HOSTCC='$(HOSTCC_NOCCACHE)' ./Configure $(HOST_PERL_CONF_OPTS))
+       (cd $(@D); $(HOST_MAKE_ENV) HOSTCC='$(HOSTCC_NOCCACHE)' \
+               ./Configure $(HOST_PERL_CONF_OPTS))
 endef
 
 define HOST_PERL_BUILD_CMDS
-       $(MAKE) -C $(@D)
+       $(HOST_MAKE_ENV) $(MAKE) -C $(@D)
 endef
 
 define HOST_PERL_INSTALL_CMDS
-       $(MAKE) -C $(@D) INSTALL_DEPENDENCE='' install
+       $(HOST_MAKE_ENV) $(MAKE) -C $(@D) INSTALL_DEPENDENCE='' install
 endef
 
 $(eval $(generic-package))