diff options
author | kim <kim@pkgsrc.org> | 2005-12-04 16:34:34 +0000 |
---|---|---|
committer | kim <kim@pkgsrc.org> | 2005-12-04 16:34:34 +0000 |
commit | 8d7084a2db7d50046629396f6c566004ee77eb19 (patch) | |
tree | 7395beb6ca2f0fc9d2b0170e0f7ff2d65e407c75 /print | |
parent | 7d139e40561737d6879f7515c715c9cb7a80e060 (diff) | |
download | pkgsrc-8d7084a2db7d50046629396f6c566004ee77eb19.tar.gz |
The work directory was stored in the default rc file since upgrade to
1.0b4nb1. There was no default rc file before. Explicitly setting
the path passed to the install script seems to avoid the problem.
Diffstat (limited to 'print')
-rw-r--r-- | print/html2ps/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print/html2ps/Makefile b/print/html2ps/Makefile index 3a34fa12998..47953d637d3 100644 --- a/print/html2ps/Makefile +++ b/print/html2ps/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2005/11/28 06:41:21 jlam Exp $ +# $NetBSD: Makefile,v 1.19 2005/12/04 16:34:34 kim Exp $ # DISTNAME= html2ps-1.0b4 @@ -24,7 +24,7 @@ NO_BUILD= yes do-install: ${INSTALL_DATA_DIR} ${PREFIX}/lib/html2ps - @cd ${WRKSRC} && ./install ${PREFIX} + @cd ${WRKSRC} && PATH=${LOCALBASE}/bin:${PREFIX}/bin ./install ${PREFIX} @${INSTALL_DATA} ${WRKSRC}/sample ${PREFIX}/lib/html2ps/sample.rc .include "../../mk/tex.buildlink3.mk" |