diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2004-04-19 00:54:53 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2004-04-19 00:54:53 +0000 |
commit | 9efc1482b475cb0426156e4a10b538350cffd366 (patch) | |
tree | 7bd961ce61a5af2fc94fd591c4c0b89786e3d5de | |
parent | Per dosirak run, fix plist. (diff) |
Use INSTALL_MAN and INSTALL_PROGRAM macros.
Approved by: Michael Johnson (maintainer)
PR: 65739
-rw-r--r-- | devel/ccache/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/devel/ccache/Makefile b/devel/ccache/Makefile index 5d39fbbd7d45..a4360b1cd2e6 100644 --- a/devel/ccache/Makefile +++ b/devel/ccache/Makefile @@ -21,7 +21,9 @@ PLIST_FILES= bin/ccache PORTDOCS= index.html \ ccache-man.html -post-install: +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ccache ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${PREFIX}/man/man1 .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} .for i in ${PORTDOCS} |