pkgsrc/meta-pkgs/boost/patches/patch-boostcpp.jam

24 lines
804 B
Text
Raw Normal View History

$NetBSD: patch-boostcpp.jam,v 1.1 2017/08/24 19:31:32 adam Exp $
--- boostcpp.jam.orig 2017-08-19 16:49:36.000000000 +0000
+++ boostcpp.jam
@@ -303,6 +303,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 ;
@@ -564,6 +565,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)