|
Boost-Commit : |
From: dave_at_[hidden]
Date: 2007-12-07 16:12:56
Author: dave
Date: 2007-12-07 16:12:55 EST (Fri, 07 Dec 2007)
New Revision: 41839
URL: http://svn.boost.org/trac/boost/changeset/41839
Log:
Merge all the latest bjam changes into this branch
Text files modified:
branches/bitten/tools/jam/doc/bjam.qbk | 4 ++--
branches/bitten/tools/jam/doc/history.qbk | 4 ++++
branches/bitten/tools/jam/src/boost-jam.spec | 2 +-
branches/bitten/tools/jam/src/build.jam | 2 +-
branches/bitten/tools/jam/src/execnt.c | 2 +-
branches/bitten/tools/jam/src/patchlevel.h | 6 +++---
6 files changed, 12 insertions(+), 8 deletions(-)
Modified: branches/bitten/tools/jam/doc/bjam.qbk
==============================================================================
--- branches/bitten/tools/jam/doc/bjam.qbk (original)
+++ branches/bitten/tools/jam/doc/bjam.qbk 2007-12-07 16:12:55 EST (Fri, 07 Dec 2007)
@@ -1,6 +1,6 @@
[article Boost.Jam
[quickbook 1.3]
- [version: 3.1.16]
+ [version: 3.1.17]
[authors [Rivera, Rene], [Abrahams, David], [Prus, Vladimir]]
[copyright 2003 2004 2005 2006 2007 Rene Rivera, David Abrahams, Vladimir Prus]
[category tool-build]
@@ -21,7 +21,7 @@
[/ Shortcuts ]
-[def :version: 3.1.16]
+[def :version: 3.1.17]
[/ Images ]
Modified: branches/bitten/tools/jam/doc/history.qbk
==============================================================================
--- branches/bitten/tools/jam/doc/history.qbk (original)
+++ branches/bitten/tools/jam/doc/history.qbk 2007-12-07 16:12:55 EST (Fri, 07 Dec 2007)
@@ -5,6 +5,10 @@
This is mostly a bug fix release.
[list
+ [li Work around some Windows CMD.EXE programs that will fail executing a totally
+ empty batch file.
+ -- ['Rene R.]
+ ]
[li Add support for detection and building with =vc9=.
-- ['John P.]
]
Modified: branches/bitten/tools/jam/src/boost-jam.spec
==============================================================================
--- branches/bitten/tools/jam/src/boost-jam.spec (original)
+++ branches/bitten/tools/jam/src/boost-jam.spec 2007-12-07 16:12:55 EST (Fri, 07 Dec 2007)
@@ -1,5 +1,5 @@
Name: boost-jam
-Version: 3.1.16
+Version: 3.1.17
Summary: Build tool
Release: 1
Source: %{name}-%{version}.tgz
Modified: branches/bitten/tools/jam/src/build.jam
==============================================================================
--- branches/bitten/tools/jam/src/build.jam (original)
+++ branches/bitten/tools/jam/src/build.jam 2007-12-07 16:12:55 EST (Fri, 07 Dec 2007)
@@ -13,7 +13,7 @@
./ ?= "" ;
# Info about what we are building.
-_VERSION_ = 3 1 16 ;
+_VERSION_ = 3 1 17 ;
NAME = boost-jam ;
VERSION = $(_VERSION_:J=$(.)) ;
RELEASE = 1 ;
Modified: branches/bitten/tools/jam/src/execnt.c
==============================================================================
--- branches/bitten/tools/jam/src/execnt.c (original)
+++ branches/bitten/tools/jam/src/execnt.c 2007-12-07 16:12:55 EST (Fri, 07 Dec 2007)
@@ -238,7 +238,7 @@
}
/* Trim leading, -ending- white space */
- while( isspace( *command ) )
+ while( *(command+1) && isspace( *command ) )
++command;
/* Write to .BAT file unless the line would be too long and it
Modified: branches/bitten/tools/jam/src/patchlevel.h
==============================================================================
--- branches/bitten/tools/jam/src/patchlevel.h (original)
+++ branches/bitten/tools/jam/src/patchlevel.h 2007-12-07 16:12:55 EST (Fri, 07 Dec 2007)
@@ -9,9 +9,9 @@
#define VERSION_MAJOR 3
#define VERSION_MINOR 1
-#define VERSION_PATCH 16
+#define VERSION_PATCH 17
#define VERSION_MAJOR_SYM "03"
#define VERSION_MINOR_SYM "1"
-#define VERSION_PATCH_SYM "16"
-#define VERSION "3.1.16"
+#define VERSION_PATCH_SYM "17"
+#define VERSION "3.1.17"
#define JAMVERSYM "JAMVERSION=3.1"
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