summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--x11-fm/tkdesk/Makefile2
-rw-r--r--x11-toolkits/gtk20-apireference/Makefile2
-rw-r--r--x11-toolkits/libzvt/Makefile2
-rw-r--r--x11-toolkits/py-gnome/Makefile4
-rw-r--r--x11-toolkits/py-gtk/Makefile4
-rw-r--r--x11-toolkits/py-wxPython/Makefile2
-rw-r--r--x11-toolkits/py-wxPython24/Makefile2
-rw-r--r--x11-toolkits/py-wxPython26/Makefile2
-rw-r--r--x11-toolkits/py-wxPython28/Makefile2
-rw-r--r--x11-toolkits/qt145/Makefile2
-rw-r--r--x11-toolkits/v/Makefile4
11 files changed, 14 insertions, 14 deletions
diff --git a/x11-fm/tkdesk/Makefile b/x11-fm/tkdesk/Makefile
index ceaced9f2340..3a74712f1bd3 100644
--- a/x11-fm/tkdesk/Makefile
+++ b/x11-fm/tkdesk/Makefile
@@ -28,7 +28,7 @@ CONFIGURE_ARGS+= --with-itcl=${LOCALBASE}/lib/itcl3.2
MAN1= tkdesk.1 cd-tkdesk.1 ed-tkdesk.1 od-tkdesk.1
pre-install:
- @find ${WRKSRC} -type f -name '*.orig' -exec ${RM} -f {} ';'
+ @${FIND} ${WRKSRC} -type f -name '*.orig' -exec ${RM} -f {} ';'
post-install:
${STRIP_CMD} ${PREFIX}/bin/tkdesksh
diff --git a/x11-toolkits/gtk20-apireference/Makefile b/x11-toolkits/gtk20-apireference/Makefile
index 2ffe401f5894..2115a1a17875 100644
--- a/x11-toolkits/gtk20-apireference/Makefile
+++ b/x11-toolkits/gtk20-apireference/Makefile
@@ -27,7 +27,7 @@ post-extract:
${RM} -f ${PLIST}.tmp; \
for dir in gdk glib gtk; do \
${MV} $${dir}/$${dir}.devhelp $${dir}/$${dir}20.devhelp; \
- find $${dir} -type f >> ${PLIST}.tmp ; \
+ ${FIND} $${dir} -type f >> ${PLIST}.tmp ; \
${ECHO} "@dirrm share/doc/$${dir}20" >> ${PLIST}.tmp; \
done; \
${SED} -e 's/^gdk/share\/doc\/gdk20/' \
diff --git a/x11-toolkits/libzvt/Makefile b/x11-toolkits/libzvt/Makefile
index f20cd3b25e7c..565506a3971d 100644
--- a/x11-toolkits/libzvt/Makefile
+++ b/x11-toolkits/libzvt/Makefile
@@ -28,7 +28,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LIBS="-L${LOCALBASE}/lib"
post-patch:
- @find ${WRKSRC} -name "*.[ch]" | xargs ${REINPLACE_CMD} -e \
+ @${FIND} ${WRKSRC} -name "*.[ch]" | ${XARGS} ${REINPLACE_CMD} -e \
's|malloc\.h|stdlib.h|g'
.include <bsd.port.mk>
diff --git a/x11-toolkits/py-gnome/Makefile b/x11-toolkits/py-gnome/Makefile
index ccab8ea49dac..19876329b364 100644
--- a/x11-toolkits/py-gnome/Makefile
+++ b/x11-toolkits/py-gnome/Makefile
@@ -38,8 +38,8 @@ post-install:
${MKDIR} ${EG_DST_DIR}
${TAR} -C ${EG_SRC_DIR} -cf - . | ${TAR} -C ${EG_DST_DIR} -xvf -
${CHOWN} -R ${BINOWN}:${BINGRP} ${EG_DST_DIR}
- find ${EG_DST_DIR} -type d -print | xargs ${CHMOD} 0555
- find ${EG_DST_DIR} -type f -print | xargs ${CHMOD} 0444
+ ${FIND} ${EG_DST_DIR} -type d -print | ${XARGS} ${CHMOD} 0555
+ ${FIND} ${EG_DST_DIR} -type f -print | ${XARGS} ${CHMOD} 0444
.else
PLIST= ${WRKDIR}/PLIST.nodocs
pre-install:
diff --git a/x11-toolkits/py-gtk/Makefile b/x11-toolkits/py-gtk/Makefile
index 7050035d8ee5..543fe6fc1d7d 100644
--- a/x11-toolkits/py-gtk/Makefile
+++ b/x11-toolkits/py-gtk/Makefile
@@ -38,8 +38,8 @@ post-install:
${MKDIR} ${EG_DST_DIR}
${TAR} -C ${EG_SRC_DIR} -cf - . | ${TAR} -C ${EG_DST_DIR} -xvf -
${CHOWN} -R ${BINOWN}:${BINGRP} ${EG_DST_DIR}
- find ${EG_DST_DIR} -type d -print | xargs ${CHMOD} 0555
- find ${EG_DST_DIR} -type f -print | xargs ${CHMOD} 0444
+ ${FIND} ${EG_DST_DIR} -type d -print | ${XARGS} ${CHMOD} 0555
+ ${FIND} ${EG_DST_DIR} -type f -print | ${XARGS} ${CHMOD} 0444
${MKDIR} ${PREFIX}/share/doc/py-gtk
${INSTALL_DATA} ${WRKSRC}/MAPPING ${PREFIX}/share/doc/py-gtk
.else
diff --git a/x11-toolkits/py-wxPython/Makefile b/x11-toolkits/py-wxPython/Makefile
index 65d05eb363f0..eb013b3cbb10 100644
--- a/x11-toolkits/py-wxPython/Makefile
+++ b/x11-toolkits/py-wxPython/Makefile
@@ -29,7 +29,7 @@ DEMO_DIR= ${PYTHONPREFIX_SITELIBDIR}/wxPython/demo
post-build:
@${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/demo
.if !defined(DEBUG_FLAGS)
- @find ${WRKSRC} -name "*.so" | xargs strip
+ @${FIND} ${WRKSRC} -name "*.so" | ${XARGS} strip
.endif
post-install:
diff --git a/x11-toolkits/py-wxPython24/Makefile b/x11-toolkits/py-wxPython24/Makefile
index 65d05eb363f0..eb013b3cbb10 100644
--- a/x11-toolkits/py-wxPython24/Makefile
+++ b/x11-toolkits/py-wxPython24/Makefile
@@ -29,7 +29,7 @@ DEMO_DIR= ${PYTHONPREFIX_SITELIBDIR}/wxPython/demo
post-build:
@${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/demo
.if !defined(DEBUG_FLAGS)
- @find ${WRKSRC} -name "*.so" | xargs strip
+ @${FIND} ${WRKSRC} -name "*.so" | ${XARGS} strip
.endif
post-install:
diff --git a/x11-toolkits/py-wxPython26/Makefile b/x11-toolkits/py-wxPython26/Makefile
index 65d05eb363f0..eb013b3cbb10 100644
--- a/x11-toolkits/py-wxPython26/Makefile
+++ b/x11-toolkits/py-wxPython26/Makefile
@@ -29,7 +29,7 @@ DEMO_DIR= ${PYTHONPREFIX_SITELIBDIR}/wxPython/demo
post-build:
@${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/demo
.if !defined(DEBUG_FLAGS)
- @find ${WRKSRC} -name "*.so" | xargs strip
+ @${FIND} ${WRKSRC} -name "*.so" | ${XARGS} strip
.endif
post-install:
diff --git a/x11-toolkits/py-wxPython28/Makefile b/x11-toolkits/py-wxPython28/Makefile
index 65d05eb363f0..eb013b3cbb10 100644
--- a/x11-toolkits/py-wxPython28/Makefile
+++ b/x11-toolkits/py-wxPython28/Makefile
@@ -29,7 +29,7 @@ DEMO_DIR= ${PYTHONPREFIX_SITELIBDIR}/wxPython/demo
post-build:
@${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/demo
.if !defined(DEBUG_FLAGS)
- @find ${WRKSRC} -name "*.so" | xargs strip
+ @${FIND} ${WRKSRC} -name "*.so" | ${XARGS} strip
.endif
post-install:
diff --git a/x11-toolkits/qt145/Makefile b/x11-toolkits/qt145/Makefile
index 22f6b01ec5f0..179ef49e0fdb 100644
--- a/x11-toolkits/qt145/Makefile
+++ b/x11-toolkits/qt145/Makefile
@@ -52,7 +52,7 @@ INSTALLS_SHLIB= yes
.endif
post-patch:
- @find ${WRKSRC}/src -name \*.h ! -name y.tab.h \
+ @${FIND} ${WRKSRC}/src -name \*.h ! -name y.tab.h \
| ${SED} -e "s,${WRKSRC},..," \
| eval `${AWK} '{print "ln -sf",$$1,"${WRKSRC}/include"}'`
diff --git a/x11-toolkits/v/Makefile b/x11-toolkits/v/Makefile
index a236c7b575be..3997329acebf 100644
--- a/x11-toolkits/v/Makefile
+++ b/x11-toolkits/v/Makefile
@@ -44,8 +44,8 @@ post-install:
@${ECHO_MSG} "==> Installing extra docs under ${PREFIX}/share/doc/v..."
${MKDIR} ${PREFIX}/share/doc/v
${CP} -R ${WRKSRC}/doc/* ${PREFIX}/share/doc/v
- find ${PREFIX}/share/doc/v -type d -exec ${CHMOD} 755 {} \;
- find ${PREFIX}/share/doc/v -type f -exec ${CHMOD} 644 {} \;
+ ${FIND} ${PREFIX}/share/doc/v -type d -exec ${CHMOD} 755 {} \;
+ ${FIND} ${PREFIX}/share/doc/v -type f -exec ${CHMOD} 644 {} \;
@${ECHO_MSG} "==> Extra docs installed. Note, you will need *tex to read 'em."
.endif
@${CAT} ${PKGMESSAGE}