Fix parallel build.
https://github.com/egallesio/STklos/issues/493
--- utils/tmpcomp.orig	2021-11-24 04:56:09.000000000 -0600
+++ utils/tmpcomp	2023-03-11 07:41:41.000000000 -0600
@@ -81,7 +81,16 @@
 
 ${prefix}/src/stklos -c -q -b ${prefix}/src/boot.img \
      -f ${prefix}/utils/stklos-compile.stk -- \
-     --no-time $Copt --output=$out $in
+     --no-time $Copt --output="$out.$$" "$in"
+
+status=$?
+if test $status -gt 0
+then
+    rm -f "$out.$$"
+    exit $status
+fi
+
+test -e "$out.$$" && mv "$out.$$" "$out"
 
 if test X$Copt = X -a -e $out
 then
