diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 14:45:08 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 14:45:08 +0000 |
commit | e99ceadaf6c77b80c19e16d91306e944305b1c88 (patch) | |
tree | e8a8f4dac51e148717ae07e2de0c635ec5d58833 /databases/mysql323-server | |
parent | 3a5afbdcc87c8da2cc12bd67ec501257e48bc034 (diff) |
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Notes
Notes:
svn path=/head/; revision=93890
Diffstat (limited to 'databases/mysql323-server')
-rw-r--r-- | databases/mysql323-server/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/databases/mysql323-server/Makefile b/databases/mysql323-server/Makefile index d91c87953da7..0057a81049b9 100644 --- a/databases/mysql323-server/Makefile +++ b/databases/mysql323-server/Makefile @@ -185,7 +185,8 @@ post-install: # This is for the maintainer only... make-plist: - /usr/bin/find foo -type f -or -type l | /usr/bin/cut -d / -f 2- | /usr/bin/sort > ${.CURDIR}/pkg-plist.new + ${FIND} foo -type f -or -type l | /usr/bin/cut -d / -f 2- | \ + /usr/bin/sort > ${.CURDIR}/pkg-plist.new /usr/bin/perl -i -ne 'if (m#share/doc/#) { print "%%PORTDOCS%%", $$_; } else { print $$_; }' ${.CURDIR}/pkg-plist.new .include <bsd.port.post.mk> |