Bug 14951

Summary: boost compile error when running make silently
Product: buildroot Reporter: bundi78
Component: OtherAssignee: unassigned
Status: RESOLVED FIXED    
Severity: trivial CC: buildroot
Priority: P5    
Version: 2022.05.1   
Target Milestone: ---   
Hardware: All   
OS: Linux   
Host: Target:
Build:

Description bundi78 2022-08-06 19:48:20 UTC
Hi,

I observed a boost compile error during creation of a linux system. I used make's '--silent' option. According to boost, the '-d' option must be followed by a digit. Therefore, the following lines inside boost.mk:

# how verbose should the build be?
BOOST_OPTS += $(if $(QUIET),-d,-d+1)
HOST_BOOST_OPTS += $(if $(QUIET),-d,-d+1)

should be:

# how verbose should the build be?
BOOST_OPTS += $(if $(QUIET),-d0,-d+1)
HOST_BOOST_OPTS += $(if $(QUIET),-d0,-d+1)