summaryrefslogtreecommitdiff
path: root/post_download.in
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2011-09-26 15:05:41 +0300
committerTor Lillqvist <tml@iki.fi>2011-09-26 15:09:39 +0300
commit26d092026457398ee23422c5070edca9057e6a25 (patch)
treef2b21b558560fa1002c57a3c4531bcbd59b3ee20 /post_download.in
parent0be026ea4ae6d53d6cc0e5acb10bd58bec490adc (diff)
Simplify
Diffstat (limited to 'post_download.in')
-rw-r--r--post_download.in36
1 files changed, 2 insertions, 34 deletions
diff --git a/post_download.in b/post_download.in
index 46d50ce1170b..551f5c1fa183 100644
--- a/post_download.in
+++ b/post_download.in
@@ -7,46 +7,14 @@ echo "* Running the post download checks."
echo "*"
echo "********************************************************************"
-dnl ===================================================================
-dnl The following is a list of supported systems.
-dnl ===================================================================
AC_CANONICAL_HOST
case "$host_os" in
- solaris*)
- _os=SunOS
- ;;
- linux-gnu*|k*bsd*-gnu*)
- _os=Linux
- ;;
- gnu)
- _os=GNU
- ;;
cygwin*|mingw32*) # Windows
_os=WINNT
;;
- darwin*) # Mac OS X or iOS
- _os=Darwin
- ;;
- freebsd*)
- _os=FreeBSD
- ;;
- *netbsd*)
- _os=NetBSD
- ;;
- aix*)
- _os=AIX
- ;;
- openbsd*)
- _os=OpenBSD
- ;;
- dragonfly*)
- _os=DragonFly
- ;;
- androideabi*)
- _os=Android
- ;;
*)
- AC_MSG_ERROR([$host_os operating system is not suitable for LibreOffice!])
+ # We only do stuff for Windows here anyway
+ _os=whatever
;;
esac