mirror of
https://github.com/boostorg/boost.git
synced 2025-04-05 21:45:00 +00:00
Disabled generating unversioned library targets on Windows & Unix with requested versioned layout as the Boost library build has been reported to fail with this code enabled for Boost library release 1.50. See related Boost library development mailing list thread at http://lists.boost.org/Archives/boost/2012/06/194312.php for more detailed information.
[SVN r79300]
This commit is contained in:
parent
288f333789
commit
9ebace63c0
1 changed files with 10 additions and 4 deletions
14
boostcpp.jam
14
boostcpp.jam
|
@ -255,12 +255,18 @@ rule declare_install_and_stage_proper_targets ( libraries * : headers * )
|
|||
if $(layout-versioned) && ( [ modules.peek : NT ] || [ modules.peek : UNIX ] )
|
||||
{
|
||||
generate stage-unversioned : stage-proper :
|
||||
<generating-rule>@boostcpp.make-unversioned-links ;
|
||||
<generating-rule>@boostcpp.make-unversioned-links ;
|
||||
$(p).mark-target-as-explicit stage-unversioned ;
|
||||
|
||||
generate install-unversioned : install-proper :
|
||||
<generating-rule>@boostcpp.make-unversioned-links ;
|
||||
$(p).mark-target-as-explicit install-unversioned ;
|
||||
# Commented out as it does not seem to work. Whoever wrote this
|
||||
# originally, left some typos in it, but when that got corrected and the
|
||||
# code got enabled - it started reporting ambiguous/duplicate target
|
||||
# Boost Build errors. Anyone requiring unversioned staged libraries
|
||||
# needs to correct those errors before reenabling this code.
|
||||
# (06.07.2012.) (Jurko)
|
||||
#~ generate install-unversioned : install-proper :
|
||||
#~ <generating-rule>@boostcpp.make-unversioned-links ;
|
||||
#~ $(p).mark-target-as-explicit install-unversioned ;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue