diff --git a/boostcpp.jam b/boostcpp.jam index ae7ceb07bf0..9635c316f8b 100644 --- a/boostcpp.jam +++ b/boostcpp.jam @@ -602,7 +602,14 @@ rule declare-targets ( all-libraries * ) ECHO The following libraries require building\: ; for local l in $(libraries) { - ECHO " - $(l)" ; + if $(l) = function_types + { + continue ; + } + if [ path.glob $(BOOST_ROOT)/libs/$(l)/build : Jamfile Jamfile.v2 ] + { + echo " - $(l)" ; + } } EXIT ; }