From becea217436a79b7ef37a023da6cb4c560225a71 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 2 Dec 2015 14:24:10 +0200 Subject: Redo extension derivation for file{}, doc{}, and cli{} We now first check the 'extension' variable, then use the default. --- build/cxx/target.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'build/cxx') diff --git a/build/cxx/target.cxx b/build/cxx/target.cxx index c8680b7..b84167b 100644 --- a/build/cxx/target.cxx +++ b/build/cxx/target.cxx @@ -16,7 +16,7 @@ namespace build "hxx", &file::static_type, &target_factory, - &target_extension_var, + &target_extension_var, &search_file, false }; @@ -27,7 +27,7 @@ namespace build "ixx", &file::static_type, &target_factory, - &target_extension_var, + &target_extension_var, &search_file, false }; @@ -38,7 +38,7 @@ namespace build "txx", &file::static_type, &target_factory, - &target_extension_var, + &target_extension_var, &search_file, false }; @@ -49,7 +49,7 @@ namespace build "cxx", &file::static_type, &target_factory, - &target_extension_var, + &target_extension_var, &search_file, false }; @@ -60,7 +60,7 @@ namespace build "h", &file::static_type, &target_factory, - &target_extension_var, + &target_extension_var, &search_file, false }; @@ -71,7 +71,7 @@ namespace build "c", &file::static_type, &target_factory, - &target_extension_var, + &target_extension_var, &search_file, false }; -- cgit v1.1