2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 05:42:30 +00:00

Fix no pynumpy target when no numpy configured.

This commit is contained in:
Rene Rivera
2017-03-05 08:56:57 -06:00
parent 60fba03e99
commit 44ea0562b2

View File

@@ -121,8 +121,11 @@ rule lib_boost_python ( version )
;
}
lib_boost_numpy($(py2-version)) = boost_numpy ;
lib_boost_numpy($(py3-version)) = boost_numpy3 ;
lib_boost_numpy(2) = boost_numpy ;
lib_boost_numpy(3) = boost_numpy3 ;
lib_boost_numpy($(py2-version)) = $(lib_boost_python(2)) ;
lib_boost_numpy($(py3-version)) = $(lib_boost_python(3)) ;
rule lib_boost_numpy ( version )
{
@@ -175,6 +178,7 @@ for local N in 2 3
else
{
alias $(lib_boost_python($(N))) ;
alias $(lib_boost_numpy($(N))) ;
}
}