From 3cf3b73ffc6881d5428a735736a347f6e143b366 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 29 Feb 2016 10:57:40 +0200 Subject: Implement auxiliary dependency database (.d files), use in cxx.compile This is part of the "High Fidelity Build" work. --- build2/install/rule.cxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'build2/install/rule.cxx') diff --git a/build2/install/rule.cxx b/build2/install/rule.cxx index e8184b9..c570a41 100644 --- a/build2/install/rule.cxx +++ b/build2/install/rule.cxx @@ -12,8 +12,6 @@ #include #include -#include - using namespace std; using namespace butl; @@ -243,7 +241,7 @@ namespace build2 args.push_back ("-d"); if (base.options.d != nullptr) //@@ VAR - config::append_options (args, base.options); + append_options (args, base.options); args.push_back ("-m"); args.push_back (base.dir_mode.c_str ()); @@ -289,7 +287,7 @@ namespace build2 args.push_back (base.cmd.c_str ()); if (base.options.d != nullptr) //@@ VAR - config::append_options (args, base.options); + append_options (args, base.options); args.push_back ("-m"); args.push_back (base.mode.c_str ()); -- cgit v1.1