diff options
author | salo <salo@pkgsrc.org> | 2004-07-10 23:23:45 +0000 |
---|---|---|
committer | salo <salo@pkgsrc.org> | 2004-07-10 23:23:45 +0000 |
commit | 31f9f99abeed8abfdd7be009e039fca35e91b04b (patch) | |
tree | a68223e921666b86534549c8a0ca9db57942de67 /www/opera7/files | |
parent | ae91d4cf33325c3461a774d04710afcd3cdbb8f5 (diff) | |
download | pkgsrc-31f9f99abeed8abfdd7be009e039fca35e91b04b.tar.gz |
Replace test -e with -f.
Addresses part of PR pkg/26235 by Georg Schwarz.
Diffstat (limited to 'www/opera7/files')
-rw-r--r-- | www/opera7/files/opera.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |