diff options
author | trevor <trevor@FreeBSD.org> | 2003-11-13 12:54:57 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2003-11-13 12:54:57 +0000 |
commit | 99ccbb6b71b7698a171b47b4acb288b8115e0a5b (patch) | |
tree | 8539a8273e773aa9e7e4c8e20ed94e1cbb1e2352 /textproc/dsssl-docbook-modular | |
parent | f32647514bf03eb1a573982c5d55b2d3188a2e39 (diff) | |
download | FreeBSD-ports-99ccbb6b71b7698a171b47b4acb288b8115e0a5b.zip FreeBSD-ports-99ccbb6b71b7698a171b47b4acb288b8115e0a5b.tar.gz |
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Diffstat (limited to 'textproc/dsssl-docbook-modular')
-rw-r--r-- | textproc/dsssl-docbook-modular/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/dsssl-docbook-modular/Makefile b/textproc/dsssl-docbook-modular/Makefile index 7b1ee10..bc08fa7 100644 --- a/textproc/dsssl-docbook-modular/Makefile +++ b/textproc/dsssl-docbook-modular/Makefile @@ -35,8 +35,8 @@ do-build: pre-install: @[ -d ${INSTDIR} ] || ${MKDIR} ${INSTDIR} - @find ${WRKDIR} -name '*~' -exec ${RM} {} \; - @find ${WRKDIR} -name '*.orig' -exec ${RM} {} \; + @${FIND} ${WRKDIR} -name '*~' -exec ${RM} {} \; + @${FIND} ${WRKDIR} -name '*.orig' -exec ${RM} {} \; do-install: @${CP} -Rp ${WRKSRC}/* ${INSTDIR} |