Fix OpenVMS build (broken by rev 1.562). r=cls

This commit is contained in:
colin%theblakes.com 2000-01-15 21:54:19 +00:00
Родитель 33279c99ec
Коммит 5ad3554f27
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -339,6 +339,10 @@ if test -n "$CROSS_COMPILE"; then
case "${target_os}" in
linux*) OS_ARCH=Linux ;;
solaris*) OS_ARCH=SunOS OS_RELEASE=5 ;;
openvms*) OS_TARGET=`uname -s`
OS_ARCH=`uname -s | sed -e 's|/|_|g'`
OS_RELEASE=`uname -r`
OS_TEST=`uname -m`;;
esac
else
OS_TARGET=`uname -s`