diff options
author | marino <marino@FreeBSD.org> | 2013-12-25 05:22:25 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2013-12-25 05:22:25 +0800 |
commit | 48a5b8a76ca0ee525aedf78cd2bfc6de7a1828f8 (patch) | |
tree | 19d0f6f1b3bf590821e6df9186c60f3d4189e610 /textproc | |
parent | 3602daba968a0e16ff8817cb961f23cd54730acc (diff) | |
download | freebsd-ports-gnome-48a5b8a76ca0ee525aedf78cd2bfc6de7a1828f8.tar.gz freebsd-ports-gnome-48a5b8a76ca0ee525aedf78cd2bfc6de7a1828f8.tar.zst freebsd-ports-gnome-48a5b8a76ca0ee525aedf78cd2bfc6de7a1828f8.zip |
Unbreak german/ispell and german/ispell-neu on F10+
The breakage was caused by processing makefiles with bmake instead of the
specified gmake
PR: ports/184613
Approved by: maintainer timeout
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/ispell/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/textproc/ispell/Makefile b/textproc/ispell/Makefile index bdff94c9c720..7437abd2705d 100644 --- a/textproc/ispell/Makefile +++ b/textproc/ispell/Makefile @@ -102,7 +102,8 @@ EXTRACT_ONLY+= ${BRDISTFILE} DENEUDISTFILE= igerman98-20071211.tar.bz2 MASTER_SITES+= http://www.j3e.de/ispell/igerman98/dict/:denu EXTRA_DICT+= ${DENEUDISTFILE}:denu -USE_GMAKE= yes +USES+= gmake +MAKE_ARGS+= MAKE=${GMAKE} .endif .if defined(ISPELL_DEALT) DEALTDISTFILE= hk-deutsch.tar.gz @@ -116,7 +117,7 @@ MASTER_SITES+= http://folk.uio.no/runekl/:no EXTRA_DICT+= ${NODISTFILE}:no EXTRACT_ONLY+= ${NODISTFILE} MASKBITS?= 64 -USE_GMAKE= yes +USES+= gmake .endif .if defined(ISPELL_NL) NLDISTFILE= ispell-nl-1.0.0.tar.gz |