diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2002-11-18 23:07:37 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2002-11-18 23:07:37 +0000 |
commit | d15ea15a7498fdf4a13acdf4f75c30f18913b241 (patch) | |
tree | 59acace38fab3007c776972b77c60aed57cfa7e1 /comms | |
parent | ccac5a9f61f550c6708e9bd2acd0c996a3814635 (diff) |
find -> ${FIND}
xargs-> ${XARGS}
PR: 39971
Submitted by: Scott Flatman <sf@dsinw.com>
Notes
Notes:
svn path=/head/; revision=70436
Diffstat (limited to 'comms')
-rw-r--r-- | comms/hylafax/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/comms/hylafax/Makefile b/comms/hylafax/Makefile index a34e2f6c20a8..44696b9faa65 100644 --- a/comms/hylafax/Makefile +++ b/comms/hylafax/Makefile @@ -78,8 +78,8 @@ USE_REINPLACE= yes REINPLACE_ARGS= -i "" post-patch: ${REINPLACE_CMD} -e 's^/usr/local^${LOCALBASE}^g' \ - `find ${WRKSRC} -type f -print0 | \ - xargs -0 ${GREP} -F -l --mmap /usr/local` + `${FIND} ${WRKSRC} -type f -print0 | \ + ${XARGS} -0 ${GREP} -F -l --mmap /usr/local` .endif .include <bsd.port.post.mk> |