X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Ftools%2Fclam_tools%2Fwrite_build_config.cpp;h=6eb06ad2ef3015e79806e98348a065e1eda09a0b;hb=51356b493613a783d95f8ba5f6ef7777c8e50f5a;hp=b52259e2cee09522561cdf1ed65d36c6d8701188;hpb=06f650d00686006c7e7cb55ca180bad5f543cbff;p=feisty_meow.git 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; }