Boost logo

Boost-Commit :

From: ghost_at_[hidden]
Date: 2007-10-08 17:13:05


Author: vladimir_prus
Date: 2007-10-08 17:13:05 EDT (Mon, 08 Oct 2007)
New Revision: 39818
URL: http://svn.boost.org/trac/boost/changeset/39818

Log:
Windows fix
Text files modified:
   trunk/tools/build/v2/test/library_chain.py | 3 ++-
   1 files changed, 2 insertions(+), 1 deletions(-)

Modified: trunk/tools/build/v2/test/library_chain.py
==============================================================================
--- trunk/tools/build/v2/test/library_chain.py (original)
+++ trunk/tools/build/v2/test/library_chain.py 2007-10-08 17:13:05 EDT (Mon, 08 Oct 2007)
@@ -126,7 +126,8 @@
 t.expect_addition("a/dist/a.dll")
 
 if (os.name == 'nt' or os.uname()[0].lower().startswith('cygwin')) and get_toolset() != 'gcc':
- file = t.adjust_names(["a/dist/a.lib"])[0]
+ # This is windows import library -- we know the exact name.
+ file = "a/dist/a.lib"
 else:
     file = t.adjust_names(["a/dist/a.dll"])[0]
 


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