diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-15 23:36:53 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-15 23:36:53 +0000 |
commit | 52c7d5b6b4009e3325fa3282ea27e0f438de91f0 (patch) | |
tree | 5b0b8f054a18fca74cd8eb7bf8d0497097fe0360 /hints/dec_osf.sh | |
parent | eea0979600e7fdb254f40db7d04a1728a29d18f7 (diff) | |
download | perl-52c7d5b6b4009e3325fa3282ea27e0f438de91f0.tar.gz |
Configure nits: do not use /tmp to avoid potential security
problems (Andy Dougherty: this does not fix the rampant
use of /tmp by the various utilities like C compilers, though.
Just don't run Configure as root if you care about security.),
fix man3dir bug (both from Andy Dougherty); fix hints files
not to use /tmp; retract #4993 (the description of the *symbols
variables is okay, after all); regen Configure.
p4raw-id: //depot/cfgperl@5757
Diffstat (limited to 'hints/dec_osf.sh')
-rw-r--r-- | hints/dec_osf.sh | 4 |
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 |