typo rectify

Typo - plataform -> platform
This commit is contained in:
Rishi Narang 2014-07-22 02:52:07 +05:30
parent 046b553736
commit ed52c5462b

View File

@ -87,19 +87,19 @@ AH_TEMPLATE([NETBSD], [Define if the operating system is NetBSD])
case $host in
*-*-aix*)
echo "Checking plataform... Identified as AIX"
echo "Checking platform... Identified as AIX"
aixos=true
;;
*-*-hpux*)
echo "Checking plataform... Identified as HPUX"
echo "Checking platform... Identified as HPUX"
hpuxos=true
;;
*-*-darwin*)
echo "Checking plataform... Identified as Macintosh OS X"
echo "Checking platform... Identified as Macintosh OS X"
macos=true
;;
*-*-linux*)
echo "Checking plataform... Identified as Linux"
echo "Checking platform... Identified as Linux"
linuxos=true
case "${host_cpu}" in
s390x)
@ -108,27 +108,27 @@ case $host in
esac
;;
*-*-solaris*)
echo "Checking plataform... Identified as Solaris"
echo "Checking platform... Identified as Solaris"
solarisos=true
;;
*-*-freebsd*)
echo "Checking plataform... Identified as FreeBSD"
echo "Checking platform... Identified as FreeBSD"
freebsdos=true
;;
*-*-netbsd*)
echo "Checking plataform... Identified as NetBSD"
echo "Checking platform... Identified as NetBSD"
netbsdos=true
;;
*-*-openbsd*)
echo "Checking plataform... Identified as OpenBSD"
echo "Checking platform... Identified as OpenBSD"
openbsdos=true
;;
*-*-kfreebsd*)
echo "Checking plataform... Identified as kFreeBSD, treating as linux"
echo "Checking platform... Identified as kFreeBSD, treating as linux"
linuxos=true
;;
*-*-gnu*.*)
echo "Checking plataform... Identified as HURD, treating as linux"
echo "Checking platform... Identified as HURD, treating as linux"
linuxos=true
;;
*)