diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2015-08-22 23:34:50 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-08-25 20:53:44 +0200 |
commit | 2f8b46c8f5c06273c91f4e33a52bd1795c0bfba7 (patch) | |
tree | c5826fb9c141a0a98e5fda639c92ac26c3b944f2 /package/canfestival | |
parent | fc56d0fc9b5835baf6d224817e227f689267d709 (diff) |
package/canfestival: don't build in parallel
The Makefiles for canfestival are not correctly written, which leads to
multiple warnings such as:
make[4]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule.
Since canfestival is relatively small, it builds in less than 6s here
when not in parallell, while a parallel build takes 5s.
Just disable parallel build to avoid future surprises.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/canfestival')
-rw-r--r-- | package/canfestival/canfestival.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/canfestival/canfestival.mk b/package/canfestival/canfestival.mk index e929c5e0a..61578d316 100644 --- a/package/canfestival/canfestival.mk +++ b/package/canfestival/canfestival.mk @@ -36,13 +36,13 @@ define CANFESTIVAL_CONFIGURE_CMDS endef define CANFESTIVAL_BUILD_CMDS - $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) all \ + $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) all \ PYTHON=$(HOST_DIR)/usr/bin/python2 endef define CANFESTIVAL_INSTALL_TARGET_CMDS for d in $(CANFESTIVAL_INSTALLED-y) ; do \ - $(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/$$d install \ + $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D)/$$d install \ PYTHON=$(HOST_DIR)/usr/bin/python2 \ DESTDIR=$(TARGET_DIR) || exit 1 ; \ done @@ -50,7 +50,7 @@ endef define CANFESTIVAL_INSTALL_STAGING_CMDS for d in $(CANFESTIVAL_INSTALLED-y) ; do \ - $(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/$$d install \ + $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D)/$$d install \ PYTHON=$(HOST_DIR)/usr/bin/python2 \ DESTDIR=$(STAGING_DIR) || exit 1 ; \ done |