From d7b415e5c584fef1abe3bb326c9b6bebfffb1dd9 Mon Sep 17 00:00:00 2001 From: salo Date: Sat, 10 Jul 2004 23:23:45 +0000 Subject: Replace test -e with -f. Addresses part of PR pkg/26235 by Georg Schwarz. --- www/opera7/files/opera.sh | 2 +- www/wwwoffle/INSTALL | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'www') diff --git a/www/opera7/files/opera.sh b/www/opera7/files/opera.sh index e804d1b5f7f..e42c0b923c0 100644 --- a/www/opera7/files/opera.sh +++ b/www/opera7/files/opera.sh @@ -6,7 +6,7 @@ then mkdir -p $OPERADIR || exit 1 for FILE in $OPERADIR/opera6.ini $OPERADIR/opera.ini do - if [ -e ${FILE} ] + if [ -f ${FILE} ] then if grep -q '^Synchronous DNS Lookup=0$' ${FILE} then diff --git a/www/wwwoffle/INSTALL b/www/wwwoffle/INSTALL index c96398cb936..e4d77bdfe7f 100644 --- a/www/wwwoffle/INSTALL +++ b/www/wwwoffle/INSTALL @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: INSTALL,v 1.4 2002/11/08 15:34:21 fredb Exp $ +# $NetBSD: INSTALL,v 1.5 2004/07/10 23:23:45 salo Exp $ if [ X"${2}" != XPOST-INSTALL ] then @@ -13,7 +13,7 @@ NEW_CONF_EXAMPLE="${PKG_PREFIX}/share/examples/wwwoffle.conf" # Allow ${CONFDIR} to be set in the environment, so that this unsubstituted # script can be run directly from the "pkgsrc" subdirectory via `make finish'. -if [ ! -e "${CONFDIR}"/wwwoffle.conf ] +if [ ! -f "${CONFDIR}"/wwwoffle.conf ] then CONFDIR="@PKG_SYSCONFDIR@" fi @@ -26,13 +26,13 @@ fi # If there's no configuration file in the new ${PKG_SYSCONFDIR}, search # possible former locations for the old file. If none found, install a # fresh one. -if [ ! -e "${CONFDIR}/wwwoffle.conf" ] +if [ ! -f "${CONFDIR}/wwwoffle.conf" ] then - if [ -e "${PKG_PREFIX}/etc/wwwoffle.conf" ] + if [ -f "${PKG_PREFIX}/etc/wwwoffle.conf" ] then conf_candidates="${PKG_PREFIX}/etc/wwwoffle.conf" fi - if [ -e /etc/wwwoffle.conf ] + if [ -f /etc/wwwoffle.conf ] then conf_candidates="$conf_candidates /etc/wwwoffle.conf" fi @@ -46,7 +46,7 @@ then fi # The "wwwoffle-upgrade-config" script needs the template to be in ${CONFDIR}. -if [ ! -e "${CONFDIR}/wwwoffle.conf.install" ] +if [ ! -f "${CONFDIR}/wwwoffle.conf.install" ] then cp "${NEW_CONF_EXAMPLE}" "${CONFDIR}/wwwoffle.conf.install" fi -- cgit v1.2.3