diff options
author | jedgar <jedgar@FreeBSD.org> | 2000-04-01 12:32:06 +0000 |
---|---|---|
committer | jedgar <jedgar@FreeBSD.org> | 2000-04-01 12:32:06 +0000 |
commit | c29cc508424319861c24b9711e8a1de737d54d95 (patch) | |
tree | 795d0a7bfaa6fe60e960fc06ccaf89fea3f66d83 /textproc | |
parent | 17dab0d7ae2119cd2cbbcf44e8e33bd7f6b0e652 (diff) | |
download | FreeBSD-ports-c29cc508424319861c24b9711e8a1de737d54d95.zip FreeBSD-ports-c29cc508424319861c24b9711e8a1de737d54d95.tar.gz |
Correct installation problem (WRKDIR -> WRKSRC)
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/code2html/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/code2html/Makefile b/textproc/code2html/Makefile index 1393c18..dc7b2a4 100644 --- a/textproc/code2html/Makefile +++ b/textproc/code2html/Makefile @@ -28,7 +28,7 @@ do-configure: @${PERL} -pi.orig -e 's|etc/code|usr/local/etc/code|' ${WRKSRC}/code2html.1 do-install: - ${INSTALL_SCRIPT} ${WRKDIR}/code2html ${PREFIX}/bin - ${INSTALL_MAN} ${WRKDIR}/code2html.1 ${PREFIX}/man/man1 + ${INSTALL_SCRIPT} ${WRKSRC}/code2html ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/code2html.1 ${PREFIX}/man/man1 .include <bsd.port.mk> |