$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r83766 - trunk/tools/build/v2/build
From: steven_at_[hidden]
Date: 2013-04-04 15:09:11
Author: steven_watanabe
Date: 2013-04-04 15:09:11 EDT (Thu, 04 Apr 2013)
New Revision: 83766
URL: http://svn.boost.org/trac/boost/changeset/83766
Log:
Don't append to the source files.  Overwrite them on update.
Text files modified: 
   trunk/tools/build/v2/build/ac.jam |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/tools/build/v2/build/ac.jam
==============================================================================
--- trunk/tools/build/v2/build/ac.jam	(original)
+++ trunk/tools/build/v2/build/ac.jam	2013-04-04 15:09:11 EDT (Thu, 04 Apr 2013)
@@ -25,13 +25,13 @@
 {
     local header = [ property.select <include> : $(properties) ] ;
     print.output $(target) ;
-    print.text "#include <$(header:G=)>" ;
+    print.text "#include <$(header:G=)>" : true ;
 }
 
 rule generate-main ( target : sources * : properties * )
 {
     print.output $(target) ;
-    print.text "int main() {}" ;
+    print.text "int main() {}" : true ;
 }
 
 rule find-include-path ( properties : header : provided-path ? )