diff options
author | antoine <antoine@FreeBSD.org> | 2016-12-26 21:06:07 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2016-12-26 21:06:07 +0800 |
commit | 1c91484f003aa9897575c807bcd039eaef04da32 (patch) | |
tree | 3634484b1a49859ed4904212fa6d0126a6881a41 /textproc | |
parent | 2295918db519505a8203f3f865c7c969da7021e2 (diff) | |
download | freebsd-ports-gnome-1c91484f003aa9897575c807bcd039eaef04da32.tar.gz freebsd-ports-gnome-1c91484f003aa9897575c807bcd039eaef04da32.tar.zst freebsd-ports-gnome-1c91484f003aa9897575c807bcd039eaef04da32.zip |
Avoid duplicating USES=localbase
Suggested by: jbeich
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/py-hunspell/Makefile | 3 | ||||
-rw-r--r-- | textproc/py3-hunspell/Makefile | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/textproc/py-hunspell/Makefile b/textproc/py-hunspell/Makefile index d380d753c5e1..c1646750d195 100644 --- a/textproc/py-hunspell/Makefile +++ b/textproc/py-hunspell/Makefile @@ -14,7 +14,8 @@ LICENSE= LGPL3 LIB_DEPENDS= libhunspell-${HSPLVER}.so:textproc/hunspell -USES?= localbase python +USES?= python +USES+= localbase USE_PYTHON= distutils HSPLVER= 1.5 diff --git a/textproc/py3-hunspell/Makefile b/textproc/py3-hunspell/Makefile index 610944811adf..52708394692f 100644 --- a/textproc/py3-hunspell/Makefile +++ b/textproc/py3-hunspell/Makefile @@ -2,6 +2,6 @@ MASTERDIR= ${.CURDIR}/../py-hunspell -USES?= localbase python:3.3+ +USES= python:3.3+ .include "${MASTERDIR}/Makefile" |