From dedc21f8c82b65f4c6625dde26f54959a6acc0ef Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sun, 30 Mar 2014 20:11:01 +0000 Subject: [PATCH] don't export extra when building tools --- tools/Jamfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/Jamfile b/tools/Jamfile index 31a0d4448..3142ec287 100644 --- a/tools/Jamfile +++ b/tools/Jamfile @@ -15,12 +15,12 @@ rule link_libtorrent ( properties * ) if shared in $(properties) { result += - /torrent//torrent/shared/shared/on ; + /torrent//torrent/shared/shared ; } else { result += - /torrent//torrent/static/static/on ; + /torrent//torrent/static/static ; } return $(result) ; }