diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2011-01-23 17:08:53 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2011-01-25 08:59:56 +0100 |
commit | b06e7ac4e135a01ddb8914c779dff2bda25e00b1 (patch) | |
tree | 05bf1227a75603bef53574b4d5b0d9cd4369217d /package | |
parent | 76d9b3e8d7ac5bb5e1b6efd30be339e03c144597 (diff) | |
download | buildroot-novena-b06e7ac4e135a01ddb8914c779dff2bda25e00b1.tar.gz buildroot-novena-b06e7ac4e135a01ddb8914c779dff2bda25e00b1.zip |
autotools: allow host package to use <pkg>_MAKE_ENV and <pkg>_MAKE
This will be needed by the Python interpreter package.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/Makefile.autotools.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index de0a35575..d445348d2 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -200,7 +200,7 @@ endif # ifndef $(2)_INSTALL_CMDS define $(2)_INSTALL_CMDS - $(HOST_MAKE_ENV) $(MAKE) -C $$($$(PKG)_SRCDIR) install + $(HOST_MAKE_ENV) $$($$(PKG)_MAKE_ENV) $$($$(PKG)_MAKE) -C $$($$(PKG)_SRCDIR) install endef endif |