summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-10-17 22:00:29 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-10-17 22:00:29 -0400
commitba48296365531e4d371cd9a4b65c0e748105d4ee (patch)
treea217a3346eba297e58951d9cfa355d040e21f1bc /Makefile
parent248e0d96aa444234db72aa0d7824cc018c4f8277 (diff)
add solaris workaround to cabal file too
uname reports SunOS, but cabal seems to use solaris.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 27ef62d46..c4341b9ae 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,7 @@ OPTFLAGS?=-DWITH_INOTIFY
clibs=Utility/libdiskfree.o Utility/libmounts.o
THREADFLAGS=$(shell if test -e `ghc --print-libdir`/libHSrts_thr.a; then printf -- -threaded; fi)
else
-ifeq ($(OS),Solaris)
+ifeq ($(OS),SunOS)
# Solaris is not supported by the assistant or watch command.
FEATURES:=$(shell echo $(FEATURES) | sed -e 's/-DWITH_ASSISTANT//' -e 's/-DWITH_WEBAPP//')
else