I am  trying to build the  tutorial example showing how to call a c++
function from a python script. When I run bjam I get the following message.
I am using MSVC++ 2005 Express Edition.

C:/Program Files/boost/boost_1_35_0/tools
/build/v2/tools\msvc.jam:263:
in confiure-really
*** argument error
* rule path.make ( native )
* called with: (  )
* missing argument native
C:/Program Files/boost/boost_1_35_0/tools/build/v2/util\path.jam:42:
see definiton of rule 'make' being called
C:/Program Files/boost/boost_1_35_0/tools/build/v2/tools\msvc.jam:141:
in confiure
C:/Program Files/boost/boost_1_35_0/tools/build/v2/tools\msvc.jam:115:
in msvc.init
C:/Program Files/boost/boost_1_35_0/tools/build/v2/build\toolset.jam:38:
in tooset.using
C:/Program Files/boost/boost_1_35_0/tools/build/v2/build\project.jam:828:
in usng
C:\Documents and Settings\Tony\user-config.jam:2: in modules.load
C:/Program Files/boost/boost_1_35_0/tools/build/v2\build-system.jam:240:
in load-config
C:/Program Files/boost/boost_1_35_0/tools/build/v2\build-system.jam:373:
in load-configuration-files
C:/Program Files/boost/boost_1_35_0/tools/build/v2\build-system.jam:501:
in load

C:\Program Files\boost\boost_1_35_0\libs\python\example\..\..\..\tools\build\v2/
kernel\modules.jam:267: in import

C:\Program Files\boost\boost_1_35_0\libs\python\example\..\..\..\tools\build\v2/
kernel/bootstrap.jam:132: in boost-build

C:\Program Files\boost\boost_1_35_0\libs\python\example\boost-build.jam:7:
in module scope

C:\Program Files\boost\boost_1_35_0\libs\python\example\tutorial>

----------------------------------
 
I created a user-config.jam file in my home directory.
Its contents are below.

#  MSVC configuration
using msvc : 8.0 ;

#  Python configuration
using python : 2.5 : C:/Program Files/Python25 ;

------------------------

I got bjam from boost-jam-3.1.16-1-ntx86.

Where should the dll that should be produced go?