From: Chris Koeritz Date: Tue, 21 Nov 2017 00:33:31 +0000 (+0000) Subject: stopped writing build config into code X-Git-Tag: 2.140.103^2~8^2~1 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=a5f72695abdf09ee18c3a85b9a11ec035d4c1aa0 stopped writing build config into code --- diff --git a/nucleus/tools/clam_tools/write_build_config.cpp b/nucleus/tools/clam_tools/write_build_config.cpp index b52259e2..6eb06ad2 100644 --- a/nucleus/tools/clam_tools/write_build_config.cpp +++ b/nucleus/tools/clam_tools/write_build_config.cpp @@ -383,16 +383,16 @@ int write_build_config::execute() LOG(astring("failed writing output file ") + ver_header_filename); } - // now make a copy into the library folder, for when we release a production version. - astring library_directory = repodir + "/nucleus/library"; - astring cfg_header_copy = library_directory + "/__build_configuration.h"; - astring ver_header_copy = library_directory + "/__build_version.h"; - if (!write_output_file(cfg_header_copy, cfg_accumulator)) { - LOG(astring("skipping copy due to read-only issue on output file: ") + cfg_header_copy); - } - if (!write_output_file(ver_header_copy, ver_accumulator)) { - LOG(astring("skipping copy due to read-only issue on output file: ") + ver_header_copy); - } +//NO, not any more // now make a copy into the library folder, for when we release a production version. +// astring library_directory = repodir + "/nucleus/library"; +// astring cfg_header_copy = library_directory + "/__build_configuration.h"; +// astring ver_header_copy = library_directory + "/__build_version.h"; +// if (!write_output_file(cfg_header_copy, cfg_accumulator)) { +// LOG(astring("skipping copy due to read-only issue on output file: ") + cfg_header_copy); +// } +// if (!write_output_file(ver_header_copy, ver_accumulator)) { +// LOG(astring("skipping copy due to read-only issue on output file: ") + ver_header_copy); +// } return 0; }