Index: RTT/Export.sh =================================================================== --- RTT/Export.sh (revision 33428) +++ RTT/Export.sh (revision 33429) @@ -10,6 +10,7 @@ verbose=0 CONVERT=convert COMPARE=compare +SCCBOX=$TRUNK/scconfig/sccbox if test -z "$pcb_rnd_bin" then @@ -20,6 +21,11 @@ fmt_args="" +scc_mktemp() +{ + $SCCBOX mktemp -p "$libdir" "$@" +} + # portable sed -i implementation with temp files sedi() { @@ -265,7 +271,7 @@ fi # run and save stderr in file res2 and stdout in variable res - res2=`mktemp` + res2=`scc_mktemp` ffn="`pwd`/$fn" res=`run_pcb_rnd -x "$fmt" $global_args $fmt_args "$ffn" 2>$res2`