Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r83613 - trunk/tools/build/v2/tools
From: steven_at_[hidden]
Date: 2013-03-27 17:06:46


Author: steven_watanabe
Date: 2013-03-27 17:06:46 EDT (Wed, 27 Mar 2013)
New Revision: 83613
URL: http://svn.boost.org/trac/boost/changeset/83613

Log:
Attempt to make clang-linux compatible with process_jam_log.
Text files modified:
   trunk/tools/build/v2/tools/clang-linux.jam | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

Modified: trunk/tools/build/v2/tools/clang-linux.jam
==============================================================================
--- trunk/tools/build/v2/tools/clang-linux.jam (original)
+++ trunk/tools/build/v2/tools/clang-linux.jam 2013-03-27 17:06:46 EDT (Wed, 27 Mar 2013)
@@ -99,10 +99,10 @@
 
   if $(pth-file) {
     DEPENDS $(<) : $(pth-file) ;
- compile.c++.with-pch $(targets) : $(sources) ;
+ clang-linux.compile.c++.with-pch $(targets) : $(sources) ;
   }
   else {
- compile.c++.without-pth $(targets) : $(sources) ;
+ clang-linux.compile.c++.without-pth $(targets) : $(sources) ;
   }
 }
 
@@ -125,10 +125,10 @@
 
   if $(pth-file) {
     DEPENDS $(<) : $(pth-file) ;
- compile.c.with-pch $(targets) : $(sources) ;
+ clang-linux.compile.c.with-pch $(targets) : $(sources) ;
   }
   else {
- compile.c.without-pth $(targets) : $(sources) ;
+ clang-linux.compile.c.without-pth $(targets) : $(sources) ;
   }
 }
 


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