diff options
author | martti <martti> | 2005-06-16 05:38:00 +0000 |
---|---|---|
committer | martti <martti> | 2005-06-16 05:38:00 +0000 |
commit | 383f864b8f8e060b2294382bed67a87ab22eba6a (patch) | |
tree | 22e46c49282bc05342de380c930dfb56fc854b9b | |
parent | bbdd26ac398f842cdde70aa75c16fe69421ccb84 (diff) | |
download | pkgsrc-383f864b8f8e060b2294382bed67a87ab22eba6a.tar.gz |
Fix installation problems found in bulk build
-rw-r--r-- | print/LPRng-doc/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/print/LPRng-doc/Makefile b/print/LPRng-doc/Makefile index d7299bb21ca..588efbae911 100644 --- a/print/LPRng-doc/Makefile +++ b/print/LPRng-doc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2005/03/24 21:12:59 wiz Exp $ +# $NetBSD: Makefile,v 1.13 2005/06/16 05:38:00 martti Exp $ DISTNAME= LPRng_DOC-3.6.13 PKGNAME= LPRng-doc-3.6.13 @@ -16,8 +16,8 @@ NO_BUILD= yes do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/LPRng - ${PAX} -O -zr -f ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} \ - -s "#^${DISTNAME}/#${PREFIX}/share/doc/LPRng/#" \ - '*.dvi' '*.gif' '*.html' '*.ps' '*.txt' + cd ${WRKDIR} && ${PAX} -O -zrf ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} + cd ${WRKSRC} && \ + ${PAX} -rw *.dvi *.gif *.html *.ps *.txt ${PREFIX}/share/doc/LPRng .include "../../mk/bsd.pkg.mk" |