diff options
author | trevor <trevor@FreeBSD.org> | 2003-11-13 19:50:40 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2003-11-13 19:50:40 +0800 |
commit | 21f8618fd005cff0ea36f6a0fb9016232577a822 (patch) | |
tree | f1571cb6eeb20aab9860f4ddbdd15da94fe6dcda /x11-wm/qlwm | |
parent | d187cf241127f78c94fdef8b9b1b3ce091a84556 (diff) | |
download | freebsd-ports-gnome-21f8618fd005cff0ea36f6a0fb9016232577a822.tar.gz freebsd-ports-gnome-21f8618fd005cff0ea36f6a0fb9016232577a822.tar.zst freebsd-ports-gnome-21f8618fd005cff0ea36f6a0fb9016232577a822.zip |
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Diffstat (limited to 'x11-wm/qlwm')
-rw-r--r-- | x11-wm/qlwm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 ; \ |