summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorJimmy Olgeni <olgeni@FreeBSD.org>2002-11-10 19:35:57 +0000
committerJimmy Olgeni <olgeni@FreeBSD.org>2002-11-10 19:35:57 +0000
commit0855a80d01a68880d8f6e6982059beb15abd5175 (patch)
tree2e34d52eceacd8aa0b3bb148f5aa804f9857b7e3 /sysutils
parentremove unnecessary patch forgotten in prev. commit (diff)
xargs -> ${XARGS}.
Notes
Notes: svn path=/head/; revision=69836
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/webmin/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/sysutils/webmin/Makefile b/sysutils/webmin/Makefile
index 5468cfee061a..27740e6c9874 100644
--- a/sysutils/webmin/Makefile
+++ b/sysutils/webmin/Makefile
@@ -38,7 +38,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 \
@@ -62,13 +62,13 @@ do-install:
@${MKDIR} ${PREFIX}/lib/webmin
@${CP} -r ${WRKSRC}/* ${PREFIX}/lib/webmin
@cd ${PREFIX}/lib/webmin && find . -name "*.orig" -print \
- | xargs ${RM}
+ | ${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 \
- | xargs ${RMDIR}
+ | ${XARGS} ${RMDIR}
@cd ${PREFIX}/lib/webmin && find . -type d -empty -print \
- | xargs ${RMDIR}
+ | ${XARGS} ${RMDIR}
@${CP} ${WRKDIR}/webmin.sh ${PREFIX}/etc/rc.d/webmin.sh
@${CHMOD} 554 ${PREFIX}/etc/rc.d/webmin.sh