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 | ac3011136c455db79fcc06707908ce729195d510 (patch) | |
tree | 4764e49eb9ada7b5b04bfab954ee3ca286cd5d08 /jam-files/sanity.jam | |
parent | 24f29a96f5ab8c9a4f71bf53ee100d0ad2761694 (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. |