From cc77be5098efd02e4a7bb1f580c307079facc3b5 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 17 Feb 2003 17:42:49 +0000 Subject: [PATCH] response file bugfixes [SVN r17490] --- src/tools/builtin.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/builtin.jam b/src/tools/builtin.jam index a3066fb3c..ee46db357 100644 --- a/src/tools/builtin.jam +++ b/src/tools/builtin.jam @@ -233,7 +233,7 @@ type.register CPP : cpp cxx ; declare-type NT : RSP : rsp ; if [ os.name ] = NT # must be conditional; we'll error on other OSes { - generators.register-composing builtin.response-file : RSP : OBJ STATIC_LIB IMPORT_LIB ; + generators.register-composing builtin.response-file : OBJ STATIC_LIB IMPORT_LIB : RSP ; } @@ -242,7 +242,7 @@ flags builtin.response-file LIBRARIES ; # response-file generation is broken up into two phases, the first of # which overwrites any existing file and the second of which appends # to the file, piecemeal, so that no command-line is too long. -rule response-file ( target : sources * ) +rule response-file ( target : sources * : properties * ) { sources += [ on $(target) return $(LIBRARIES) ] ;