blob: 0fd2eec18bd670e40bfd39d9b24e548f382aaa7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
$NetBSD: patch-aa,v 1.7 2009/10/14 06:40:08 adam Exp $
--- Jamroot.orig 2009-08-23 18:17:37.000000000 +0200
+++ Jamroot
@@ -251,6 +251,10 @@ rule libraries-to-install ( existing-lib
ECHO "error: both --with-<library> and --without-<library> specified" ;
EXIT ;
}
+ if $(without-parameter) && $(without-parameter) = "*"
+ {
+ without-parameter = $(existing-libraries) ;
+ }
local wrong = [ set.difference $(with-parameter) : $(existing-libraries) ] ;
if $(wrong)
@@ -439,6 +443,7 @@ install stage-proper
: <location>$(stage-locate)/lib
<install-dependencies>on <install-type>LIB
<install-no-version-symlinks>on
+ <dll-path>@PREFIX@/lib
;
explicit stage-proper ;
|