mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-01 04:20:09 +08:00
configure: style changes
* configure (case $targetos): Improve readibility. (case $cpu): New, to improve readability compare to if + test.
This commit is contained in:
parent
5ebc6a964d
commit
9c9ca2032b
20
configure
vendored
20
configure
vendored
@ -101,16 +101,10 @@ EXESUF=""
|
|||||||
# OS specific
|
# OS specific
|
||||||
targetos=`uname -s`
|
targetos=`uname -s`
|
||||||
case $targetos in
|
case $targetos in
|
||||||
MINGW32*)
|
MINGW32*) mingw32=yes;;
|
||||||
mingw32="yes"
|
DragonFly) noldl=yes;;
|
||||||
;;
|
OpenBSD) noldl=yes;;
|
||||||
DragonFly)
|
*) ;;
|
||||||
noldl="yes"
|
|
||||||
;;
|
|
||||||
OpenBSD)
|
|
||||||
noldl="yes"
|
|
||||||
;;
|
|
||||||
*) ;;
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# find source path
|
# find source path
|
||||||
@ -231,9 +225,9 @@ fi
|
|||||||
else
|
else
|
||||||
|
|
||||||
# if cross compiling, cannot launch a program, so make a static guess
|
# if cross compiling, cannot launch a program, so make a static guess
|
||||||
if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" ; then
|
case $cpu in
|
||||||
bigendian="yes"
|
powerpc|mips|s390) bigendian=yes;;
|
||||||
fi
|
esac
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user