diff options
author | ale <ale@FreeBSD.org> | 2004-08-25 18:21:22 +0800 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2004-08-25 18:21:22 +0800 |
commit | 11dab16f6b035f6b51b857b5a9a6d4a01d97aa7c (patch) | |
tree | 629926916423ff8362f5e402edd27df34a6af4bd /graphics | |
parent | 5eb291ce84a0d5647a3565d03166440c25a9b81e (diff) | |
download | freebsd-ports-gnome-11dab16f6b035f6b51b857b5a9a6d4a01d97aa7c.tar.gz freebsd-ports-gnome-11dab16f6b035f6b51b857b5a9a6d4a01d97aa7c.tar.zst freebsd-ports-gnome-11dab16f6b035f6b51b857b5a9a6d4a01d97aa7c.zip |
Suppress cp error.
PR: ports/69325
Submitted by: edwin
Diffstat (limited to 'graphics')
-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 ebe29cca9f40..7e10322e8abe 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> |