diff options
author | ale <ale@FreeBSD.org> | 2004-08-25 10:21:22 +0000 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2004-08-25 10:21:22 +0000 |
commit | 11dab16f6b035f6b51b857b5a9a6d4a01d97aa7c (patch) | |
tree | 629926916423ff8362f5e402edd27df34a6af4bd /graphics/jpgraph | |
parent | 5eb291ce84a0d5647a3565d03166440c25a9b81e (diff) | |
download | FreeBSD-ports-11dab16f6b035f6b51b857b5a9a6d4a01d97aa7c.zip FreeBSD-ports-11dab16f6b035f6b51b857b5a9a6d4a01d97aa7c.tar.gz |
Suppress cp error.
PR: ports/69325
Submitted by: edwin
Diffstat (limited to 'graphics/jpgraph')
-rw-r--r-- | graphics/jpgraph/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/graphics/jpgraph/Makefile b/graphics/jpgraph/Makefile index ebe29cc..7e10322 100644 --- a/graphics/jpgraph/Makefile +++ b/graphics/jpgraph/Makefile @@ -19,6 +19,9 @@ USE_PHP= gd NO_CDROM= "The free version cannot be used in a commercial context" +post-extract: + ${RM} -rf ${WRKSRC}/src/Examples/CVS + do-install: @${MKDIR} ${DATADIR} ${CP} ${WRKSRC}/src/*.php ${DATADIR} @@ -28,7 +31,7 @@ do-install: @${MKDIR} ${DOCSDIR} ${CP} -R ${WRKSRC}/docs/ ${DOCSDIR} @${MKDIR} ${EXAMPLESDIR} - -${CP} ${WRKSRC}/src/Examples/* ${EXAMPLESDIR} + ${CP} ${WRKSRC}/src/Examples/* ${EXAMPLESDIR} .endif .include <bsd.port.mk> |