1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

- Fix deinstall script when running in BATCH mode.

PR:		ports/67762
Submitted by:	Linus Sjoberg <lsjoberg@aland.net>
Approved by:	maintainer timeout (7 weeks)
This commit is contained in:
Florent Thoumie 2005-06-05 23:03:15 +00:00
parent bcbfbfd4a3
commit 545cd1ee8f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=136870
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= stunnel
PORTVERSION= 4.10
PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= http://www.stunnel.org/download/stunnel/src/ \
ftp://stunnel.mirt.net/stunnel/OBSOLETE/ \

View File

@ -13,7 +13,7 @@ ask() {
question=$1
default=$2
if [ -z "${PACKAGE_BUILDING}" ]; then
if [ -z "${PACKAGE_BUILDING}" -a -z "${BATCH}" ]; then
read -p "${question} [${default}]? " answer
fi
if [ x${answer} = x ]; then