From 96ab7a80a43b841ff69e22bfcc18bd7e707325ce Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 11 Dec 2006 05:02:34 +0000 Subject: [PATCH] Remove BBv1 for good [SVN r36323] --- example/boost-build.jam | 2 +- example/tutorial/Jamfile | 18 ------------------ example/tutorial/Jamroot | 18 ++++++++++++++++++ example/tutorial/Jamrules | 36 ------------------------------------ 4 files changed, 19 insertions(+), 55 deletions(-) delete mode 100644 example/tutorial/Jamfile create mode 100755 example/tutorial/Jamroot delete mode 100644 example/tutorial/Jamrules 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 -