$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r61086 - trunk/libs/python/test
From: rwgk_at_[hidden]
Date: 2010-04-05 17:28:31
Author: rwgk
Date: 2010-04-05 17:28:30 EDT (Mon, 05 Apr 2010)
New Revision: 61086
URL: http://svn.boost.org/trac/boost/changeset/61086
Log:
libs/python/test/Jamfile.v2: moving "rule require-windows" block up to avoid bjam syntax error
Text files modified: 
   trunk/libs/python/test/Jamfile.v2 |    15 +++++++--------                         
   1 files changed, 7 insertions(+), 8 deletions(-)
Modified: trunk/libs/python/test/Jamfile.v2
==============================================================================
--- trunk/libs/python/test/Jamfile.v2	(original)
+++ trunk/libs/python/test/Jamfile.v2	2010-04-05 17:28:30 EDT (Mon, 05 Apr 2010)
@@ -37,6 +37,13 @@
     return [ compile-fail $(sources) /boost/python//boost_python ] ;
 }
 
+rule require-windows ( properties * )
+{
+    if ! <target-os>windows in $(properties)
+    {
+        return <build>no ;
+    }
+}
 
 test-suite python
   :
@@ -184,14 +191,6 @@
 #     bpl-test bienstman5 ;
 # }
 
-rule require-windows ( properties * )
-{
-    if ! <target-os>windows in $(properties)
-    {
-        return <build>no ;
-    }
-}
-
 [ bpl-test calling_conventions : : <conditional>@require-windows ]
 [ bpl-test calling_conventions_mf : : <conditional>@require-windows ]