made two temp paths use the USER variable for uniqueness.
authorChris Koeritz <fred@gruntose.com>
Thu, 19 Sep 2013 19:11:02 +0000 (15:11 -0400)
committerChris Koeritz <fred@gruntose.com>
Thu, 19 Sep 2013 19:11:02 +0000 (15:11 -0400)
nucleus/tools/solution_solvers/check_resource_ids.sh
production/setup_src/whole_build_package/makefile

index d4b9dab901348081cd52e54d1d791ac8eefff4bb..d571e6a9938f1f3daac33aa742658cc8fee0abe0 100644 (file)
@@ -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")
index c2f3327c94d49e8be3f37cb0ba0727e96870be94..86bcc4508af360e9976d3531c3cc4d7e87c47032 100644 (file)
@@ -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