>From 6c29dec28995f038d6ffe1fd38debb04afa6e94c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Ivan=C4=8Di=C4=87?= Date: Thu, 20 Mar 2014 00:39:01 +0100 Subject: [PATCH] correct invalid rule name causing failure when embedding manifest --- src/tools/msvc.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/msvc.jam b/src/tools/msvc.jam index ceac799..be0c9d7 100644 --- a/src/tools/msvc.jam +++ b/src/tools/msvc.jam @@ -1015,8 +1015,8 @@ local rule configure-really ( version ? : options * ) toolset.flags msvc.compile .IDL $(cpu-conditions) : $(setup-$(c))$(idl-compiler) ; toolset.flags msvc.compile .MC $(cpu-conditions) : $(setup-$(c))$(mc-compiler) ; - toolset.flags msvc.manifest .MT.SETUP : $(setup-$(c)) ; - toolset.flags msvc.manifest .MT $(cpu-conditions) : $(manifest-tool) -nologo ; + toolset.flags msvc.link .MT.SETUP : $(setup-$(c)) ; + toolset.flags msvc.link .MT $(cpu-conditions) : $(manifest-tool) -nologo ; if $(cc-filter) { -- 1.8.1.msysgit.1