Boost logo

Boost-Commit :

From: ghost_at_[hidden]
Date: 2007-10-10 04:45:32


Author: vladimir_prus
Date: 2007-10-10 04:45:32 EDT (Wed, 10 Oct 2007)
New Revision: 39878
URL: http://svn.boost.org/trac/boost/changeset/39878

Log:
Remove stale code
Text files modified:
   branches/BOOST_BUILD_PYTHON/boost/tools/build/v2/pybb.jam | 65 +--------------------------------------
   1 files changed, 3 insertions(+), 62 deletions(-)

Modified: branches/BOOST_BUILD_PYTHON/boost/tools/build/v2/pybb.jam
==============================================================================
--- branches/BOOST_BUILD_PYTHON/boost/tools/build/v2/pybb.jam (original)
+++ branches/BOOST_BUILD_PYTHON/boost/tools/build/v2/pybb.jam 2007-10-10 04:45:32 EDT (Wed, 10 Oct 2007)
@@ -30,74 +30,15 @@
         DEPENDS all : $(targets) ;
     }
     
- rule set-update-action ( action : targets * : sources * )
+ rule set-update-action ( action : targets * : sources * : properties * )
     {
- ECHO "Setting action " $(action) "for" $(targets) ;
- $(action) $(targets) : $(sources) ;
+ $(action) $(targets) : $(sources) : $(properties) ;
     }
     
     rule set-target-variable ( targets + : variable : value * )
     {
- ECHO "$(variable) on $(targets) = $(value)" ;
-
         $(variable) on $(targets) = $(value) ;
- }
-
- rule MkDir
- {
- # If dir exists, don't update it
- # Do this even for $(DOT).
-
- NOUPDATE $(<) ;
-
- if $(<) != $(DOT) && ! $($(<)-mkdir)
- {
- local s ;
-
- # Cheesy gate to prevent multiple invocations on same dir
- # MkDir1 has the actions
- # Arrange for jam dirs
-
- $(<)-mkdir = true ;
- MkDir1 $(<) ;
- Depends dirs : $(<) ;
-
- # Recursively make parent directories.
- # $(<:P) = $(<)'s parent, & we recurse until root
-
- s = $(<:P) ;
-
- if $(NT)
- {
- switch $(s)
- {
- case *: : s = ;
- case *:\\ : s = ;
- }
- }
-
- if $(s) && $(s) != $(<)
- {
- Depends $(<) : $(s) ;
- MkDir $(s) ;
- }
- else if $(s)
- {
- NOTFILE $(s) ;
- }
- }
- }
-
- actions MkDir1
- {
- mkdir "$(<)"
- }
-
- actions piecemeal together existing Clean
- {
- $(RM) "$(>)"
- }
-
+ }
 }
 
 


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