diff options
Diffstat (limited to 'devel/swig13-doc/Makefile')
-rw-r--r-- | devel/swig13-doc/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/swig13-doc/Makefile b/devel/swig13-doc/Makefile index 2dddd4f..c934b7f 100644 --- a/devel/swig13-doc/Makefile +++ b/devel/swig13-doc/Makefile @@ -25,7 +25,9 @@ do-build: do-install: ${MKDIR} ${DOCSDIR} - cd ${WRKSRC} && find Examples Doc -type d -exec ${INSTALL} -d ${DOCSDIR}/{} \; - cd ${WRKSRC} && find Examples Doc -type f -exec ${INSTALL_DATA} {} ${DOCSDIR}/{} \; + cd ${WRKSRC} && ${FIND} Examples Doc -type d \ + -exec ${INSTALL} -d ${DOCSDIR}/{} \; + cd ${WRKSRC} && ${FIND} Examples Doc -type f \ + -exec ${INSTALL_DATA} {} ${DOCSDIR}/{} \; .include <bsd.port.mk> |