diff options
author | tron <tron@pkgsrc.org> | 2010-03-30 10:29:40 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2010-03-30 10:29:40 +0000 |
commit | 63a658fdedf35b73b7bb23365724ce2aed531ef8 (patch) | |
tree | bcb988ae59458cdcb541bc02e2cd7c776de59223 /chat/ircII | |
parent | 470122ea6bd52c31cee56234e531ab37922b87c4 (diff) | |
download | pkgsrc-63a658fdedf35b73b7bb23365724ce2aed531ef8.tar.gz |
Fix installation into a destination directory with "MANZ" defined
by passing the correct directory name to "mk/plist/doc-compress".
Diffstat (limited to 'chat/ircII')
-rw-r--r-- | chat/ircII/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chat/ircII/Makefile b/chat/ircII/Makefile index eb4a6b24d59..fb9a5b8ce4a 100644 --- a/chat/ircII/Makefile +++ b/chat/ircII/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.53 2010/01/22 00:22:19 heinz Exp $ +# $NetBSD: Makefile,v 1.54 2010/03/30 10:29:40 tron Exp $ DISTNAME= ircii-${VERS} PKGNAME= ircII-${VERS} @@ -47,10 +47,10 @@ CONFIGURE_ARGS+= --with-non-blocking=none # Optionally install compressed help files if MANZ is defined. .if defined(MANZ) PLIST_SUBST+= GZSUFFIX=".gz" -DOC_COMPRESS_ARGS= -z ${PREFIX} +DOC_COMPRESS_ARGS= -z ${DESTDIR}${PREFIX} .else PLIST_SUBST+= GZSUFFIX= -DOC_COMPRESS_ARGS= ${PREFIX} +DOC_COMPRESS_ARGS= ${DESTDIR}${PREFIX} .endif post-extract: |