diff options
author | Larry Wall <lwall@netlabs.com> | 1991-06-06 23:28:30 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1991-06-06 23:28:30 +0000 |
commit | d48672a2009b4897fb5bf74d6723c050cdd015e0 (patch) | |
tree | 8b55c5c62bca864358bc6bcb107144d864062543 /hints/ultrix_4.sh | |
parent | 9ef589d8078fdf16316dec772c00e81b3c38fd22 (diff) | |
download | perl-d48672a2009b4897fb5bf74d6723c050cdd015e0.tar.gz |
perl 4.0 patch 9: patch #4, continued
See patch #4.
Diffstat (limited to 'hints/ultrix_4.sh')
-rw-r--r-- | hints/ultrix_4.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/hints/ultrix_4.sh b/hints/ultrix_4.sh index 008e1ef82a..ffaf376272 100644 --- a/hints/ultrix_4.sh +++ b/hints/ultrix_4.sh @@ -1 +1,19 @@ ccflags="$ccflags -DLANGUAGE_C -Olimit 2900" +tmp=`(uname -a) 2>/dev/null` +case "$tmp" in +*RISC*) cat <<EOF +Note that there is a bug in some versions of NFS on the DECStation that +may cause utime() to work incorrectly. If so, regression test io/fs +may fail if run under NFS. Ignore the failure. +EOF +;; +esac +case "$tmp" in +*4.1*) + eval_cflags='optimize="-g"' + teval_cflags='optimize="-g"' + toke_cflags='optimize="-g"' + ttoke_cflags='optimize="-g"' + ;; +esac + |