diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 11:50:40 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 11:50:40 +0000 |
commit | b5c7760f0d920526e1294c638453a20f3c07ec03 (patch) | |
tree | d325ae6836ad3c16ca078cfce945c64fabd190c3 /x11-wm | |
parent | 39a7f86255001d4b80a591c9e73b6201ee277dda (diff) | |
download | ports-b5c7760f0d920526e1294c638453a20f3c07ec03.tar.gz ports-b5c7760f0d920526e1294c638453a20f3c07ec03.zip |
Notes
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/bbconf/Makefile | 4 | ||||
-rw-r--r-- | x11-wm/qlwm/Makefile | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/x11-wm/bbconf/Makefile b/x11-wm/bbconf/Makefile index 059fc7dedeea..ad4bb2f5af16 100644 --- a/x11-wm/bbconf/Makefile +++ b/x11-wm/bbconf/Makefile @@ -24,7 +24,7 @@ USE_QT_VER= 3 MAN1= bbconf.1 post-patch: - @find ${WRKSRC} -name 'Makefile.in' -print | \ - xargs ${PERL} -pi.orig -e 's#lib/bbconf#libexec/bbconf#g' + @${FIND} ${WRKSRC} -name 'Makefile.in' -print | \ + ${XARGS} ${PERL} -pi.orig -e 's#lib/bbconf#libexec/bbconf#g' .include <bsd.port.mk> diff --git a/x11-wm/qlwm/Makefile b/x11-wm/qlwm/Makefile index 35e6c2201007..0ae10802b24f 100644 --- a/x11-wm/qlwm/Makefile +++ b/x11-wm/qlwm/Makefile @@ -35,7 +35,7 @@ BROKEN= "Fails to link" .endif post-patch: - find ${WRKSRC} -name "Makefile" | xargs ${REINPLACE_CMD} \ + ${FIND} ${WRKSRC} -name "Makefile" | ${XARGS} ${REINPLACE_CMD} \ 's|/usr/local/qlwm|${PREFIX}/${LIBDIR}|g ; \ s|^CXX|#CXX|g ; \ s|^INCPATH|#INCPATH|g ; \ |