diff --git a/example/boost-build.jam b/example/boost-build.jam index 07cef684..b7220e2c 100755 --- a/example/boost-build.jam +++ b/example/boost-build.jam @@ -2,6 +2,6 @@ # Software License, Version 1.0. (See accompanying # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -# Edit this path to point at the tools/build/v1 subdirectory of your +# Edit this path to point at the tools/build/v2 subdirectory of your # Boost installation. Absolute paths work, too. boost-build ../../../tools/build/v2 ; diff --git a/example/tutorial/Jamfile b/example/tutorial/Jamfile deleted file mode 100644 index 4aa0921c..00000000 --- a/example/tutorial/Jamfile +++ /dev/null @@ -1,18 +0,0 @@ -# Hello World Example from the tutorial -# Copyright Joel de Guzman 2002-2004. Distributed under the Boost -# Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt -# or copy at http://www.boost.org/LICENSE_1_0.txt) -# [Joel de Guzman 10/9/2002] - -# This is the top of our own project tree -project-root ; - -# Include definitions needed for Python modules -import python ; - -extension hello # Declare a Python extension called hello -: hello.cpp # source - # requirements and dependencies for Boost.Python extensions -