Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r67682 - trunk/tools/inspect
From: bdawes_at_[hidden]
Date: 2011-01-05 09:20:22


Author: bemandawes
Date: 2011-01-05 09:20:19 EST (Wed, 05 Jan 2011)
New Revision: 67682
URL: http://svn.boost.org/trac/boost/changeset/67682

Log:
ignore directories with "boost-no-inspect" file present
Text files modified:
   trunk/tools/inspect/inspect.cpp | 7 ++-----
   1 files changed, 2 insertions(+), 5 deletions(-)

Modified: trunk/tools/inspect/inspect.cpp
==============================================================================
--- trunk/tools/inspect/inspect.cpp (original)
+++ trunk/tools/inspect/inspect.cpp 2011-01-05 09:20:19 EST (Wed, 05 Jan 2011)
@@ -152,11 +152,6 @@
       // don't look at binaries
       && leaf != "bin"
       && leaf != "bin.v2"
- // this really out of our hands
- && 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
@@ -169,6 +164,8 @@
       && leaf != ".bzr"
       // ignore OS X directory info files:
       && leaf != ".DS_Store"
+ // ignore if tag file present
+ && !boost::filesystem::exists(pth / "boost-no-inspect")
       ;
   }
 


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