diff mbox

[1/1] host-mtools: Fix build failure introduced by libiconv dependency

Message ID BLU0-SMTP166C506BEDB8CDC67D076CFD97A0@phx.gbl
State Accepted
Commit 482757f537bc0364bf765f0da02310b6a48bf06e
Headers show

Commit Message

Bernd Kuhls March 24, 2014, 7:29 p.m. UTC
Fixes http://autobuild.buildroot.net/results/8ff/8ff7fc94cc3e54f5608f7b4d2e6ccba5fd8e4177/

Also disable parallel make because "make install" is broken, see
http://lists.openembedded.org/pipermail/openembedded-commits/2011-October/134396.html

Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
---
 package/mtools/mtools.mk |    5 +++++
 1 file changed, 5 insertions(+)

Comments

Peter Korsgaard March 24, 2014, 8:15 p.m. UTC | #1
>>>>> "Bernd" == Bernd Kuhls <berndkuhls@hotmail.com> writes:

 > Fixes http://autobuild.buildroot.net/results/8ff/8ff7fc94cc3e54f5608f7b4d2e6ccba5fd8e4177/
 > Also disable parallel make because "make install" is broken, see
 > http://lists.openembedded.org/pipermail/openembedded-commits/2011-October/134396.html

 > Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>

Committed, thanks.
diff mbox

Patch

diff --git a/package/mtools/mtools.mk b/package/mtools/mtools.mk
index 8649325..9dc72f3 100644
--- a/package/mtools/mtools.mk
+++ b/package/mtools/mtools.mk
@@ -16,7 +16,12 @@  MTOOLS_CONF_OPT = --without-x
 ifeq ($(BR2_PACKAGE_LIBICONV),y)
 MTOOLS_DEPENDENCIES += libiconv
 MTOOLS_CONF_ENV += LIBS=-liconv
+# We have no host dependencies
+HOST_MTOOLS_DEPENDENCIES =
 endif
 
+# Package does not build in parallel due to improper make rules
+MTOOLS_MAKE = $(MAKE1)
+
 $(eval $(autotools-package))
 $(eval $(host-autotools-package))