From 07b1489f3bad91a0edd1a98d8923287f8e61ce0e Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sun, 5 Mar 2017 15:16:36 -0600 Subject: [PATCH] BPL builds targets need to always be defined. --- build/Jamfile | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/build/Jamfile b/build/Jamfile index f585953d..8c37ec6d 100644 --- a/build/Jamfile +++ b/build/Jamfile @@ -169,15 +169,18 @@ for local N in 2 3 { lib_boost_python $(py$(N)-version) ; libraries += $(lib_boost_python($(py$(N)-version))) ; - if [ python.numpy ] - { - lib_boost_numpy $(py$(N)-version) ; - libraries += $(lib_boost_numpy($(py$(N)-version))) ; - } } else { alias $(lib_boost_python($(N))) ; + } + if [ python.numpy ] + { + lib_boost_numpy $(py$(N)-version) ; + libraries += $(lib_boost_numpy($(py$(N)-version))) ; + } + else + { alias $(lib_boost_numpy($(N))) ; } }