diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-09-10 19:23:53 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-09-10 21:44:57 +0200 |
commit | c1cf9ba80e5f07e0f8d4ac47ca448436ca94a287 (patch) | |
tree | a2e7dac4cea5dce4c143500073a112b33bfa937a | |
parent | ab842ce21df58e7731dae675e08894c6e9024e56 (diff) | |
download | buildroot-c1cf9ba80e5f07e0f8d4ac47ca448436ca94a287.tar.gz buildroot-c1cf9ba80e5f07e0f8d4ac47ca448436ca94a287.zip |
e2fsprogs: disable parallel build for host installation
It seems that host-e2fsprogs has an issue with parallel build since
version 1.44.2:
symlinks.o: file not recognized: File truncated
/home/buildroot/build/instance-0/output/host/lib/libss.so.2: file or directory does not exist
Fixes:
- http://autobuild.buildroot.org/results/6b424ba788ccd738c2afcd940075991581e860b6
- http://autobuild.buildroot.org/results/1d816f9be6bad6e10d273dc2d0acb200233d8d4d
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/e2fsprogs/e2fsprogs.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/e2fsprogs/e2fsprogs.mk b/package/e2fsprogs/e2fsprogs.mk index 98001c3c99..d9ae0b29b6 100644 --- a/package/e2fsprogs/e2fsprogs.mk +++ b/package/e2fsprogs/e2fsprogs.mk @@ -79,8 +79,9 @@ E2FSPROGS_INSTALL_STAGING_OPTS = \ DESTDIR=$(STAGING_DIR) \ install-libs +# Package does not build in parallel due to improper make rules define HOST_E2FSPROGS_INSTALL_CMDS - $(HOST_MAKE_ENV) $(MAKE) -C $(@D) install install-libs + $(HOST_MAKE_ENV) $(MAKE1) -C $(@D) install install-libs endef $(eval $(autotools-package)) |