Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r84370 - trunk/tools/build/v2/tools
From: andrey.semashev_at_[hidden]
Date: 2013-05-19 06:03:49


Author: andysem
Date: 2013-05-19 06:03:47 EDT (Sun, 19 May 2013)
New Revision: 84370
URL: http://svn.boost.org/trac/boost/changeset/84370

Log:
Manifest is now always generated for MSVC 8 and later. This is needed in order to solve problems with Windows UAC requiring elevated priviledges for some tests that have 'patch' in their names.
Text files modified:
   trunk/tools/build/v2/tools/msvc.jam | 2 +-
   trunk/tools/build/v2/tools/msvc.py | 2 +-
   2 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/tools/build/v2/tools/msvc.jam
==============================================================================
--- trunk/tools/build/v2/tools/msvc.jam (original)
+++ trunk/tools/build/v2/tools/msvc.jam 2013-05-19 06:03:47 EDT (Sun, 19 May 2013)
@@ -266,7 +266,7 @@
 
         # Make sure that manifest will be generated even if there is no
         # dependencies to put there.
- toolset.flags $(toolset).link LINKFLAGS $(conditions)/<embed-manifest>off : /MANIFEST ;
+ toolset.flags $(toolset).link LINKFLAGS $(conditions) : /MANIFEST ;
     }
     toolset.pop-checking-for-flags-module ;
 }

Modified: trunk/tools/build/v2/tools/msvc.py
==============================================================================
--- trunk/tools/build/v2/tools/msvc.py (original)
+++ trunk/tools/build/v2/tools/msvc.py 2013-05-19 06:03:47 EDT (Sun, 19 May 2013)
@@ -207,7 +207,7 @@
         
         # Make sure that manifest will be generated even if there is no
         # dependencies to put there.
- toolset.flags('{}.link'.format(toolset_arg), 'LINKFLAGS', extend_conditions(conditions,["<embed-manifest>off"]), ['/MANIFEST'])
+ toolset.flags('{}.link'.format(toolset_arg), 'LINKFLAGS', conditions, ['/MANIFEST'])
 
 
 # Registers this toolset including all of its flags, features & generators. Does


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