stopped writing build config into code
authorChris Koeritz <fred@gruntose.com>
Tue, 21 Nov 2017 00:33:31 +0000 (00:33 +0000)
committerChris Koeritz <fred@gruntose.com>
Tue, 21 Nov 2017 00:33:31 +0000 (00:33 +0000)
nucleus/tools/clam_tools/write_build_config.cpp

index b52259e2cee09522561cdf1ed65d36c6d8701188..6eb06ad2ef3015e79806e98348a065e1eda09a0b 100644 (file)
@@ -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;
 }