Files
2013-09-26 17:14:40 +02:00

24 lines
795 B
Plaintext

$NetBSD: patch-aa,v 1.10 2012/08/27 08:49:09 adam Exp $
--- boostcpp.jam.orig 2012-07-27 18:15:55.000000000 +0000
+++ boostcpp.jam
@@ -249,6 +249,7 @@ rule declare_install_and_stage_proper_ta
: <location>$(stage-locate)/lib
<install-dependencies>on <install-type>LIB
<install-no-version-symlinks>on
+ <dll-path>@PREFIX@/lib
;
$(p).mark-target-as-explicit stage-proper ;
@@ -509,6 +510,10 @@ rule libraries-to-install ( existing-lib
{
EXIT error: both --with-<library> and --without-<library> specified ;
}
+ if $(without-parameter) && $(without-parameter) = "*"
+ {
+ without-parameter = $(existing-libs) ;
+ }
local wrong = [ set.difference $(with-parameter) : $(existing-libs) ] ;
if $(wrong)