summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorJimmy Olgeni <olgeni@FreeBSD.org>2003-02-23 11:11:51 +0000
committerJimmy Olgeni <olgeni@FreeBSD.org>2003-02-23 11:11:51 +0000
commitfbbc8d05b9e0dd7468a548a3f7b6ce9435ecd8be (patch)
treed1a928bd5b03ed9c1ea6953a77ff0e92446c197e /sysutils
parentfind -> ${FIND}. (diff)
echo -> ${ECHO_CMD}.
Notes
Notes: svn path=/head/; revision=76256
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/webmin/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/webmin/Makefile b/sysutils/webmin/Makefile
index 5367b0a6913f..1b41de3a3e0b 100644
--- a/sysutils/webmin/Makefile
+++ b/sysutils/webmin/Makefile
@@ -86,7 +86,7 @@ post-install:
# stop webmin if configured and enabled at startup
@[ -n "${BATCH}" ] || ([ ! -d ${PREFIX}/etc/webmin ] || [ ! -x ${PREFIX}/etc/rc.d/webmin.sh ] || ${PREFIX}/etc/rc.d/webmin.sh stop > /dev/null)
# upgrade configuration if etc/webmin exists
- @[ ! -d ${PREFIX}/etc/webmin ] || echo | nostart=Y ${PREFIX}/lib/webmin/setup.sh
+ @[ ! -d ${PREFIX}/etc/webmin ] || ${ECHO_CMD} | nostart=Y ${PREFIX}/lib/webmin/setup.sh
# run interactive setup if not in BATCH mode and no configuration exists
@[ -n "${BATCH}" ] || ([ -d ${PREFIX}/etc/webmin ] || nostart=Y ${PREFIX}/lib/webmin/setup.sh)
@${CAT} ${PKGMESSAGE}