Corrected limit_impl for installation of interpreters
This commit is contained in:
parent
377cd17425
commit
6640944a51
1 changed files with 24 additions and 5 deletions
|
@ -104,9 +104,16 @@ w
|
|||
q
|
||||
EOF
|
||||
case $i in
|
||||
m68k2|m68k4)
|
||||
m68k2)
|
||||
DISABLE_INT=1
|
||||
;;
|
||||
m68k4)
|
||||
case $SYSNAME in
|
||||
m68_sysV_0|sun2)
|
||||
DISABLE_INT=1
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
mantra)
|
||||
if test $SYSNAME = m68_sysV_0
|
||||
then
|
||||
|
@ -114,11 +121,16 @@ EOF
|
|||
fi
|
||||
;;
|
||||
sun2)
|
||||
case $SYSNAME in
|
||||
sun2|sun3)
|
||||
if test $SYSNAME = sun2
|
||||
then
|
||||
DISABLE_INT=1
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
;;
|
||||
sun3)
|
||||
if test $SYSNAME = sun3
|
||||
then
|
||||
DISABLE_INT=1
|
||||
fi
|
||||
;;
|
||||
pmds4)
|
||||
case $SYSNAME in
|
||||
|
@ -127,6 +139,13 @@ EOF
|
|||
;;
|
||||
esac
|
||||
;;
|
||||
m68020)
|
||||
case $SYSNAME in
|
||||
m68020|sun3)
|
||||
DISABLE_INT=1
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
done
|
||||
case $SYSNAME in
|
||||
|
|
Loading…
Reference in a new issue