From d85d0e538535ae92e44660ee3799d17429b35fbe Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Fri, 28 Jul 2006 12:09:25 +0000 Subject: [PATCH] Fix reference to no-existing response file code [SVN r34758] --- v2/tools/como-win.jam | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/v2/tools/como-win.jam b/v2/tools/como-win.jam index e1d309133..0787db8aa 100644 --- a/v2/tools/como-win.jam +++ b/v2/tools/como-win.jam @@ -104,16 +104,9 @@ actions compile.c++ $(CONFIG_COMMAND) -c -e5 --no_version --no_prelink_verbose --display_error_number --long_long --diag_suppress=9,21,161,748,940,962 --diag_error=461 -D__STL_LONG_LONG -U$(UNDEFS) -D$(DEFINES) $(WARN) $(CFLAGS) $(C++FLAGS) -I"$(HDRS)" -I"$(STDHDRS)" -I"$(SYSHDRS)" -o "$(<)" "$(>)" } -#### Archive #### - -rule archive ( targets + : sources * : properties * ) -{ - common.response-file $(targets) : $(sources) : $(targets[2]) : $(properties) ; -} - actions updated together piecemeal archive { - $(CONFIG_COMMAND) --no_version --no_prelink_verbose --prelink_object "$(LIBRARIES)" - lib $(ARFLAGS) /nologo /out:"$(<:S=.lib)" "$(LIBRARIES)" + $(CONFIG_COMMAND) --no_version --no_prelink_verbose --prelink_object "$(>)" + lib $(ARFLAGS) /nologo /out:"$(<:S=.lib)" "$(>)" }