diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 12:54:57 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 12:54:57 +0000 |
commit | f725dc8ef5848b5e69ebefdc7c1f1517f26643fb (patch) | |
tree | 61e738084a4bfbaac41e371a863552bfb8c6ed2a /textproc/dsssl-docbook-modular | |
parent | Use the FIND and XARGS macros introduced in bsd.port.mk 1.391. (diff) |
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 7b1ee10ef2ec..bc08fa7f6f0f 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} |