Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r67554 - in trunk/tools/inspect: . build/msvc
From: bdawes_at_[hidden]
Date: 2011-01-01 17:27:39


Author: bemandawes
Date: 2011-01-01 17:27:38 EST (Sat, 01 Jan 2011)
New Revision: 67554
URL: http://svn.boost.org/trac/boost/changeset/67554

Log:
Fix Windows sensitivity because of string compares. Really should have used path rather than string, but that needs to wait for another day.
Text files modified:
   trunk/tools/inspect/build/msvc/readme.txt | 5 +++--
   trunk/tools/inspect/inspect.cpp | 3 ++-
   2 files changed, 5 insertions(+), 3 deletions(-)

Modified: trunk/tools/inspect/build/msvc/readme.txt
==============================================================================
--- trunk/tools/inspect/build/msvc/readme.txt (original)
+++ trunk/tools/inspect/build/msvc/readme.txt 2011-01-01 17:27:38 EST (Sat, 01 Jan 2011)
@@ -1,3 +1,4 @@
-The provided Microsoft VC++ solution assumes the following has been run in the root directory"
+The provided Microsoft VC++ solution assumes the following commands have been run in the root directory:
 
- bjam --toolset=msvc-9.0express --build-type=complete --with-filesystem,regex stage
\ No newline at end of file
+ bjam --toolset=msvc-9.0express --build-type=complete --with-filesystem stage
+ bjam --toolset=msvc-9.0express --build-type=complete --with-regex stage

Modified: trunk/tools/inspect/inspect.cpp
==============================================================================
--- trunk/tools/inspect/inspect.cpp (original)
+++ trunk/tools/inspect/inspect.cpp 2011-01-01 17:27:38 EST (Sat, 01 Jan 2011)
@@ -153,12 +153,13 @@
       && leaf != "bin"
       && leaf != "bin.v2"
       // this really out of our hands
- && local.find("tools/jam/src") != 0
       && local.find("tools/build/v2/engine") != 0
+ && local.find("tools\\build\\v2\\engine") != 0
       // too many issues with generated HTML files
       && leaf != "status"
       // no point in checking doxygen xml output
       && local.find("doc/xml") != 0
+ && local.find("doc\\xml") != 0
       // ignore some web files
       && leaf != ".htaccess"
       // ignore svn files:


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk