X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Ftools%2Fsolution_solvers%2Fcheck_resource_ids.sh;h=d571e6a9938f1f3daac33aa742658cc8fee0abe0;hb=55dbc70b42a39ac190cb90d4897ba0456be60bf6;hp=d4b9dab901348081cd52e54d1d791ac8eefff4bb;hpb=bec09aa3c5c79cff7981b3972deebc9a040a0e68;p=feisty_meow.git 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")