summaryrefslogtreecommitdiff
path: root/hints/dec_osf.sh
diff options
context:
space:
mode:
Diffstat (limited to 'hints/dec_osf.sh')
-rw-r--r--hints/dec_osf.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/hints/dec_osf.sh b/hints/dec_osf.sh
index c149ae075a..cba8db2f3b 100644
--- a/hints/dec_osf.sh
+++ b/hints/dec_osf.sh
@@ -68,7 +68,7 @@ case "`$cc -v 2>&1 | grep cc`" in
*gcc*) ;; # pass
*) # compile something small: taint.c is fine for this.
# the main point is the '-v' flag of 'cc'.
- case "`cc -v -I. -c taint.c -o /tmp/taint$$.o 2>&1`" in
+ case "`cc -v -I. -c taint.c -o taint$$.o 2>&1`" in
*/gemc_cc*) # we have the new DEC GEM CC
_DEC_cc_style=new
;;
@@ -77,7 +77,7 @@ case "`$cc -v 2>&1 | grep cc`" in
;;
esac
# cleanup
- rm -f /tmp/taint$$.o
+ rm -f taint$$.o
;;
esac