diff options
author | Romain Naour <romain.naour@openwide.fr> | 2015-05-15 22:36:17 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-05-16 14:20:47 +0200 |
commit | e94a9531590609d1530837c2009d96d29cc148b1 (patch) | |
tree | ec3158e451f1c12b107d9f89bff81641ca771fc7 | |
parent | ee2b703fe799b36e54f35851e6f2db28eb8fdb1f (diff) | |
download | buildroot-e94a9531590609d1530837c2009d96d29cc148b1.tar.gz buildroot-e94a9531590609d1530837c2009d96d29cc148b1.zip |
package/boost: stop on the first error during install to staging
-q option is missing in BOOST_INSTALL_STAGING_CMDS,
so the build doesn't stop on the first error.
This help to see what happened.
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/boost/boost.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/boost/boost.mk b/package/boost/boost.mk index 7060591411..3fe44e3a7d 100644 --- a/package/boost/boost.mk +++ b/package/boost/boost.mk @@ -148,7 +148,7 @@ define HOST_BOOST_INSTALL_CMDS endef define BOOST_INSTALL_STAGING_CMDS - (cd $(@D) && ./bjam -j$(PARALLEL_JOBS) -d+1 \ + (cd $(@D) && ./bjam -j$(PARALLEL_JOBS) -q -d+1 \ --user-config=$(@D)/user-config.jam \ $(BOOST_OPTS) \ --prefix=$(STAGING_DIR)/usr \ |