diff --git a/v1/borland-tools.jam b/v1/borland-tools.jam index a58739002..54d89bd74 100644 --- a/v1/borland-tools.jam +++ b/v1/borland-tools.jam @@ -177,7 +177,7 @@ rule Archive-action borland-Archive-action $(<) : $(>) ; } -actions updated together piecemeal borland-Archive-action +actions borland-Archive-action { IF EXIST "$(<)" DEL "$(<)" "$(BCC_TOOL_PATH)tlib" /P64 /u /a /C /$(ARFLAGS) "$(<)" +"$(>)" @@ -189,3 +189,4 @@ actions updated together piecemeal borland-Archive-action + diff --git a/v1/msvc-tools.jam b/v1/msvc-tools.jam index 8dd3394db..9c3af8060 100644 --- a/v1/msvc-tools.jam +++ b/v1/msvc-tools.jam @@ -185,10 +185,11 @@ rule Archive-action with-command-file vc-Archive $(<) : $(>) ; } -actions updated together piecemeal vc-Archive +actions vc-Archive { $(VC_SETUP) if exist "$(<)" DEL "$(<)" - "$(VC_TOOL_PATH)$(VC_LINKER)" /lib $(ARFLAGS) $(PDB_LINKFLAG)"$(VC_PDB_FILE)" /out:"$(<)" %_$(<:B)_% @"$(>)" + "$(VC_TOOL_PATH)$(VC_LINKER)" /lib $(ARFLAGS) $(PDB_LINKFLAG)"$(VC_PDB_FILE)" /out:"$(<)" @"$(>)" } +