aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorAkim Demaille <akim@lrde.epita.fr>2012-12-21 13:41:43 +0100
committerAkim Demaille <akim@lrde.epita.fr>2012-12-21 13:45:22 +0100
commit9c9ca2032bc033792d748264e34e810e689598b5 (patch)
treeb785b1b491338103c40eb9e505922a1482035af1 /configure
parent5ebc6a964d49ebab862f3d006a28162c84644247 (diff)
downloadtinycc-9c9ca2032bc033792d748264e34e810e689598b5.tar.gz
tinycc-9c9ca2032bc033792d748264e34e810e689598b5.tar.bz2
configure: style changes
* configure (case $targetos): Improve readibility. (case $cpu): New, to improve readability compare to if + test.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure20
1 files changed, 7 insertions, 13 deletions
diff --git a/configure b/configure
index b4ac328..b440c5d 100755
--- a/configure
+++ b/configure
@@ -101,16 +101,10 @@ EXESUF=""
# OS specific
targetos=`uname -s`
case $targetos in
-MINGW32*)
-mingw32="yes"
-;;
-DragonFly)
-noldl="yes"
-;;
-OpenBSD)
-noldl="yes"
-;;
-*) ;;
+ MINGW32*) mingw32=yes;;
+ DragonFly) noldl=yes;;
+ OpenBSD) noldl=yes;;
+ *) ;;
esac
# find source path
@@ -231,9 +225,9 @@ fi
else
# if cross compiling, cannot launch a program, so make a static guess
-if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" ; then
- bigendian="yes"
-fi
+case $cpu in
+ powerpc|mips|s390) bigendian=yes;;
+esac
fi