0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

fix system_name case

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5808 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-04-24 01:54:37 +00:00
parent cb4a546f54
commit c866586725

9
configure vendored
View File

@ -315,6 +315,15 @@ if test -z "$_target" ; then
esac
else
system_name=`echo $_target | cut -d '-' -f 2`
case "`echo $system_name | tr A-Z a-z`" in
linux) system_name=Linux ;;
freebsd) system_name=FreeBSD ;;
netbsd) system_name=NetBSD ;;
bsd/os) system_name=BSD/OS ;;
openbsd) system_name=OpenBSD ;;
sunos) system_name=SunOS ;;
qnx) system_name=QNX ;;
esac
host_arch=`echo $_target | cut -d '-' -f 1`
fi