X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Ftools%2Fclam_tools%2Fvsts_version_fixer.cpp;h=bef8fcbafaf727d3b5f0b215280e4c54f8181722;hb=2ca53771151d942a630205e5f59f8f14365f6ae0;hp=f43ce64fd23fb75dcede61a792a163066e722667;hpb=2dc7262979a054eeb1167aa60546365f1da812e1;p=feisty_meow.git diff --git a/nucleus/tools/clam_tools/vsts_version_fixer.cpp b/nucleus/tools/clam_tools/vsts_version_fixer.cpp index f43ce64f..bef8fcba 100644 --- a/nucleus/tools/clam_tools/vsts_version_fixer.cpp +++ b/nucleus/tools/clam_tools/vsts_version_fixer.cpp @@ -96,7 +96,7 @@ HOOPLE_MAIN(vsts_version_fixer, ) bool vsts_version_fixer::spider_directory(directory start, spider_method to_invoke) { -// FUNCDEF("spider_directory"); + FUNCDEF("spider_directory"); using namespace basis; @@ -133,7 +133,7 @@ string_array global_dir_whacks; bool whacking_spider(const directory ¤t) { -// FUNCDEF("whacking_spider"); + FUNCDEF("whacking_spider"); using namespace basis; //LOG(astring("whacking_spider: ") + current.path()); // iterate across the files in the directory and check for evil ones. @@ -205,7 +205,7 @@ basis::astring global_build_ini; bool stamping_spider(const directory ¤t) { -// FUNCDEF("stamping_spider"); + FUNCDEF("stamping_spider"); using namespace basis; //LOG(astring("stamping_spider: ") + current.path()); @@ -232,7 +232,7 @@ bool stamping_spider(const directory ¤t) bool vsts_version_fixer::perform_version_stamping(const filename &start_name) { -// FUNCDEF("perform_version_stamping"); + FUNCDEF("perform_version_stamping"); directory start(start_name); return spider_directory(start, stamping_spider); } @@ -254,18 +254,18 @@ void vsts_version_fixer::remove_confusing_files() source_dir_whacks += "Release"; source_dir_whacks += "bin"; source_dir_whacks += "temp_build"; - directory repo_source(environment::get("FEISTY_MEOW_DIR") + "/source"); + directory repo_source(environment::get("FEISTY_MEOW_APEX") + "/source"); whack_in_subdirs(repo_source, source_file_whacks, source_dir_whacks); - directory libra_src(environment::get("FEISTY_MEOW_DIR") + "/libraries"); + directory libra_src(environment::get("FEISTY_MEOW_APEX") + "/libraries"); whack_in_subdirs(libra_src, source_file_whacks, source_dir_whacks); - directory produ_src(environment::get("FEISTY_MEOW_DIR") + "/products"); + directory produ_src(environment::get("FEISTY_MEOW_APEX") + "/products"); whack_in_subdirs(produ_src, source_file_whacks, source_dir_whacks); /* this never helped. // clean out a variety of bad files in the objects hierarchy. // currently this is just the generated RES files which we have seen cause // vsts to think apps and dlls are up to date when they are actually not. - directory repo_objects(environment::get("FEISTY_MEOW_DIR")); + directory repo_objects(environment::get("FEISTY_MEOW_APEX")); string_array objects_file_whacks; objects_file_whacks += ".res"; string_array objects_dir_whacks; // none right now. @@ -281,7 +281,7 @@ int vsts_version_fixer::execute() remove_confusing_files(); - astring repo_dir = environment::get("FEISTY_MEOW_DIR"); + astring repo_dir = environment::get("FEISTY_MEOW_APEX"); // figure out which build parameter file to use. global_build_ini = "";