From: Chris Koeritz Date: Thu, 19 Sep 2013 19:11:02 +0000 (-0400) Subject: made two temp paths use the USER variable for uniqueness. X-Git-Tag: 2.140.90~923 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=55dbc70b42a39ac190cb90d4897ba0456be60bf6 made two temp paths use the USER variable for uniqueness. --- diff --git a/nucleus/tools/solution_solvers/check_resource_ids.sh b/nucleus/tools/solution_solvers/check_resource_ids.sh index d4b9dab9..d571e6a9 100644 --- a/nucleus/tools/solution_solvers/check_resource_ids.sh +++ b/nucleus/tools/solution_solvers/check_resource_ids.sh @@ -4,7 +4,7 @@ # canonical resource.h name) and discovers any duplicates. the duplicates # are shown with their symbolic names and file locations. -TEMP_RESOURCE_HEADERS=/tmp/resrc_headers.txt +TEMP_RESOURCE_HEADERS=/tmp/resrc_headers_$USER.txt sp='[ ]' # space and tab. @@ -16,7 +16,7 @@ find "$BUILD_TOP" -type f -iname "resource.h" | \ #hmmm: above ignores *anything* with app in the name. # grep -v app_src >"$TEMP_RESOURCE_HEADERS" -FULLDEFS=/tmp/full_definition_list.txt +FULLDEFS=/tmp/full_definition_list_$USER.txt # clean up prior versions. rm -f "$FULLDEFS" @@ -57,7 +57,7 @@ done <"$FULLDEFS" echo done reading all definitions. -JUST_IDS=/tmp/ids_list.txt +JUST_IDS=/tmp/ids_list_$USER.txt rm -f "$JUST_IDS" i=0 @@ -70,7 +70,7 @@ echo done accumulating list of integer ids. id_size=$(wc "$JUST_IDS") -JUST_IDS_TEMP=/tmp/ids_list_temp.txt +JUST_IDS_TEMP=/tmp/ids_list_temp_$USER.txt sort "$JUST_IDS" | uniq >"$JUST_IDS_TEMP" id_temp_size=$(wc "$JUST_IDS_TEMP") diff --git a/production/setup_src/whole_build_package/makefile b/production/setup_src/whole_build_package/makefile index c2f3327c..86bcc450 100644 --- a/production/setup_src/whole_build_package/makefile +++ b/production/setup_src/whole_build_package/makefile @@ -4,7 +4,7 @@ PROJECT = Whole_Build_Pack FIRST_TARGETS = create_package CLEANUPS = $(PRODUCTION_DIR)/install/whole_build* TYPE = hierarchy -export TARGET=/tmp/zz_wholebuild +export TARGET=/tmp/zz_wholebuild_$(USER) include cpp/rules.def