summaryrefslogtreecommitdiff
path: root/hunspell
diff options
context:
space:
mode:
authorEike Rathke <erack@apache.org>2011-08-28 14:46:31 +0000
committerEike Rathke <erack@apache.org>2011-08-28 14:46:31 +0000
commitcc756d24d3f34c4ac402ee88ed3e25e3934ec8bc (patch)
treeb5ca7212727b21e999c0a54352b69487da3d2702 /hunspell
parent1a5baf5ce78676385d35209eb311ed2a35cdf063 (diff)
make copylefts an option
Based on original work by Mathias Bauer <mbauer@apache.org>
Diffstat (limited to 'hunspell')
-rw-r--r--hunspell/makefile.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/hunspell/makefile.mk b/hunspell/makefile.mk
index 7b2bc84e0789..7c309cdf3a3b 100644
--- a/hunspell/makefile.mk
+++ b/hunspell/makefile.mk
@@ -36,6 +36,8 @@ TARGET=hunspell
# --- Files --------------------------------------------------------
+.IF "$(DISABLE_HUNSPELL)" == ""
+
TARFILE_NAME=hunspell-1.2.9
TARFILE_MD5=68dd2e8253d9a7930e9fd50e2d7220d0
ADDITIONAL_FILES+=config.h
@@ -96,3 +98,7 @@ OUT2INC= \
.INCLUDE : target.mk
.INCLUDE : tg_ext.mk
+.ELSE
+all:
+ @echo "hunspell disabled"
+.ENDIF