diff options
author | reed <reed@pkgsrc.org> | 2005-12-27 18:27:16 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2005-12-27 18:27:16 +0000 |
commit | 69fbab2ce20fbe609b72ef164705ca910096069c (patch) | |
tree | 7dcb8be9f967565d50cf094e098982f5fe7f81d9 /textproc | |
parent | 62d6ba7dc1b278cdee78f221393da9a1851278f6 (diff) | |
download | pkgsrc-69fbab2ce20fbe609b72ef164705ca910096069c.tar.gz |
Allow this to use custom PKGMANDIR by setting MAN1DIR and MAN45DIR
in the local.h also.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/ispell-base/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/textproc/ispell-base/Makefile b/textproc/ispell-base/Makefile index 8f315bef9ef..30badff071d 100644 --- a/textproc/ispell-base/Makefile +++ b/textproc/ispell-base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2005/12/05 20:51:03 rillig Exp $ +# $NetBSD: Makefile,v 1.27 2005/12/27 18:27:16 reed Exp $ # DISTNAME= ispell-3.3.02 @@ -41,7 +41,9 @@ do-configure: ${ECHO} "#define MASKBITS 64" >>local.h; \ ${ECHO} "#undef WORDS" >> local.h ; \ ${ECHO} '#define WORDS "${EXTRADICT}"' >> local.h ; \ - ${ECHO} "#define CFLAGS \"${CFLAGS}\"" >> local.h + ${ECHO} "#define CFLAGS \"${CFLAGS}\"" >> local.h ; \ + ${ECHO} "#define MAN1DIR \"${PREFIX}/${PKGMANDIR}/man1\"" >> local.h ; \ + ${ECHO} "#define MAN45DIR \"${PREFIX}/${PKGMANDIR}/man5\"" >> local.h ; .if ${OPSYS} == "SunOS" cd ${WRKSRC}; \ ${ECHO} "#define USG" >> local.h; |