diff options
author | olgeni <olgeni@FreeBSD.org> | 2003-02-23 19:10:15 +0800 |
---|---|---|
committer | olgeni <olgeni@FreeBSD.org> | 2003-02-23 19:10:15 +0800 |
commit | ca27554bc949839f4b884d8fb39e5879f4314e3b (patch) | |
tree | 23fe2ec4665982e4be27fd2fde88a14a78cb8df9 /sysutils/webmin | |
parent | 40722194c88305d89bf98396756ee7d4dbcc21f7 (diff) | |
download | freebsd-ports-gnome-ca27554bc949839f4b884d8fb39e5879f4314e3b.tar.gz freebsd-ports-gnome-ca27554bc949839f4b884d8fb39e5879f4314e3b.tar.zst freebsd-ports-gnome-ca27554bc949839f4b884d8fb39e5879f4314e3b.zip |
find -> ${FIND}.
Diffstat (limited to 'sysutils/webmin')
-rw-r--r-- | sysutils/webmin/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sysutils/webmin/Makefile b/sysutils/webmin/Makefile index cc69c6b8d9a1..5367b0a6913f 100644 --- a/sysutils/webmin/Makefile +++ b/sysutils/webmin/Makefile @@ -35,7 +35,7 @@ post-extract: ${TAR} --unlink -xzf ${DISTDIR}/$${webmin_module} -C ${WRKSRC}; \ done; \ fi - @find ${WRKSRC} -name "*.bak" | ${XARGS} ${RM} + @${FIND} ${WRKSRC} -name "*.bak" | ${XARGS} ${RM} post-patch: @${CP} ${WRKDIR}/webmin-${PORTVERSION}/bind8/config-freebsd-3.0 \ @@ -58,21 +58,21 @@ post-patch: do-install: @${MKDIR} ${PREFIX}/lib/webmin @${CP} -r ${WRKSRC}/* ${PREFIX}/lib/webmin - @cd ${PREFIX}/lib/webmin && find . -name "*.orig" -print \ + @cd ${PREFIX}/lib/webmin && ${FIND} . -name "*.orig" -print \ | ${XARGS} ${RM} # we may have 2 levels of empty directories which cause the plist generation # system to fail - @cd ${PREFIX}/lib/webmin && find . -type d -empty -print \ + @cd ${PREFIX}/lib/webmin && ${FIND} . -type d -empty -print \ | ${XARGS} ${RMDIR} - @cd ${PREFIX}/lib/webmin && find . -type d -empty -print \ + @cd ${PREFIX}/lib/webmin && ${FIND} . -type d -empty -print \ | ${XARGS} ${RMDIR} @${CP} ${WRKDIR}/webmin.sh ${PREFIX}/etc/rc.d/webmin.sh-dist @${CHMOD} 554 ${PREFIX}/etc/rc.d/webmin.sh-dist post-install: - @cd ${PREFIX} ; find lib/webmin -type f -o -type l | sort \ + @cd ${PREFIX} ; ${FIND} lib/webmin -type f -o -type l | sort \ > ${WRKDIR}/PLIST.lib-webmin - @cd ${PREFIX} ; find lib/webmin -type d | sort -r \ + @cd ${PREFIX} ; ${FIND} lib/webmin -type d | sort -r \ | ${SED} -e 's/^/@dirrm /g' \ >> ${WRKDIR}/PLIST.lib-webmin |