aboutsummaryrefslogtreecommitdiff
path: root/chinese/oto
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2003-11-19 22:08:29 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2003-11-19 22:08:29 +0000
commitaf31ca6a7d1892ae088ea790c6b55e55d21ffaa6 (patch)
tree292246ac101ff123f552847e26bff36f641d3f37 /chinese/oto
parent330d27816eb773aed5415a1d494a891d73a947cd (diff)
downloadports-af31ca6a7d1892ae088ea790c6b55e55d21ffaa6.tar.gz
ports-af31ca6a7d1892ae088ea790c6b55e55d21ffaa6.zip
Fix incorrect ${REINPLACE_CMD} use and a couple of style nits.
Approved by: portmgr (kkenn)
Notes
Notes: svn path=/head/; revision=94412
Diffstat (limited to 'chinese/oto')
-rw-r--r--chinese/oto/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/chinese/oto/Makefile b/chinese/oto/Makefile
index 7cc5d1332a2c..dd31c9fcaa01 100644
--- a/chinese/oto/Makefile
+++ b/chinese/oto/Makefile
@@ -24,7 +24,8 @@ USE_REINPLACE= yes
CPPFLAGS= -I${LOCALBASE}/include
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LIBS="-L${LOCALBASE}/lib -liconv"
-.include <bsd.port.pre.mk>
post-patch:
- @${FIND} ${WRKSRC}/src/ -name "*" | ${XARGS} ${REINPLACE_CMD} -e 's,stdint.h,inttypes.h,'
-.include <bsd.port.post.mk>
+ @${FIND} ${WRKSRC}/src/ -type f -print0 | \
+ ${XARGS} -0 ${REINPLACE_CMD} -e 's,stdint.h,inttypes.h,'
+
+.include <bsd.port.mk>