We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e31524 commit 398e7f0Copy full SHA for 398e7f0
1 file changed
build/Jamfile
@@ -121,8 +121,11 @@ rule lib_boost_python ( version )
121
;
122
}
123
124
-lib_boost_numpy($(py2-version)) = boost_numpy ;
125
-lib_boost_numpy($(py3-version)) = boost_numpy3 ;
+lib_boost_numpy(2) = boost_numpy ;
+lib_boost_numpy(3) = boost_numpy3 ;
126
+
127
+lib_boost_numpy($(py2-version)) = $(lib_boost_python(2)) ;
128
+lib_boost_numpy($(py3-version)) = $(lib_boost_python(3)) ;
129
130
rule lib_boost_numpy ( version )
131
{
@@ -175,6 +178,7 @@ for local N in 2 3
175
178
else
176
179
177
180
alias $(lib_boost_python($(N))) ;
181
+ alias $(lib_boost_numpy($(N))) ;
182
183
184
0 commit comments