From 0ff87fbbb9fbf37f18db9ec8313261a3981e10f2 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Tue, 20 Mar 2007 16:48:05 +0000 Subject: [PATCH] Fix python's generator error [SVN r37243] --- src/tools/python.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/python.jam b/src/tools/python.jam index 7034de4b1..61020640c 100644 --- a/src/tools/python.jam +++ b/src/tools/python.jam @@ -638,7 +638,7 @@ local rule declare-libpython-target ( version ? : sys.platform ? : requirements libpython-target-name = $(libpython-target-name:J=-).lib ; # Declare and return it - lib $(libpython-target-name) : : python$(lib-version) $(requirements) ; + searched-lib $(libpython-target-name) : : python$(lib-version) $(requirements) ; return $(libpython-target-name) ; }