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
|
q
|
||||||
EOF
|
EOF
|
||||||
case $i in
|
case $i in
|
||||||
m68k2|m68k4)
|
m68k2)
|
||||||
DISABLE_INT=1
|
DISABLE_INT=1
|
||||||
;;
|
;;
|
||||||
|
m68k4)
|
||||||
|
case $SYSNAME in
|
||||||
|
m68_sysV_0|sun2)
|
||||||
|
DISABLE_INT=1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
mantra)
|
mantra)
|
||||||
if test $SYSNAME = m68_sysV_0
|
if test $SYSNAME = m68_sysV_0
|
||||||
then
|
then
|
||||||
|
@ -114,11 +121,16 @@ EOF
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
sun2)
|
sun2)
|
||||||
case $SYSNAME in
|
if test $SYSNAME = sun2
|
||||||
sun2|sun3)
|
then
|
||||||
DISABLE_INT=1
|
DISABLE_INT=1
|
||||||
;;
|
fi
|
||||||
esac
|
;;
|
||||||
|
sun3)
|
||||||
|
if test $SYSNAME = sun3
|
||||||
|
then
|
||||||
|
DISABLE_INT=1
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
pmds4)
|
pmds4)
|
||||||
case $SYSNAME in
|
case $SYSNAME in
|
||||||
|
@ -127,6 +139,13 @@ EOF
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
m68020)
|
||||||
|
case $SYSNAME in
|
||||||
|
m68020|sun3)
|
||||||
|
DISABLE_INT=1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
case $SYSNAME in
|
case $SYSNAME in
|
||||||
|
|
Loading…
Add table
Reference in a new issue