diff options
author | Kenneth Heafield <github@kheafield.com> | 2012-09-13 06:36:28 -0700 |
---|---|---|
committer | Kenneth Heafield <github@kheafield.com> | 2012-09-13 06:36:28 -0700 |
commit | b901df059531aad2f7d11b1e1ce13f9a9cb1c8ef (patch) | |
tree | 5e0ca4c8ebbea50c35c1f20fb2bf0752c96bc575 /jam-files/sanity.jam | |
parent | df001c7fb050bf5e424af4a0948ae7e23486fc06 (diff) |
Fix compilation with static
Diffstat (limited to 'jam-files/sanity.jam')
-rw-r--r-- | jam-files/sanity.jam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jam-files/sanity.jam b/jam-files/sanity.jam index 086f20ae..738316f8 100644 --- a/jam-files/sanity.jam +++ b/jam-files/sanity.jam @@ -63,7 +63,7 @@ requirements = ; FORCE-STATIC = [ option.get "static" : : "yes" ] ; if $(FORCE-STATIC) { - requirements += <runtime-link>static ; + requirements += <link>static <runtime-link>static ; } #Determine if a library can be compiled statically. |