diff options
author | tron <tron> | 2001-09-23 21:06:07 +0000 |
---|---|---|
committer | tron <tron> | 2001-09-23 21:06:07 +0000 |
commit | 8beb1871ec08bcdc1578ad6190e9e645e055127a (patch) | |
tree | 982ad90043c644e29de0b8d5e7f049966aa6aa82 /shells/tcsh | |
parent | e0d9a2d22130bce0b456457d118cbad3f1d72c09 (diff) | |
download | pkgsrc-8beb1871ec08bcdc1578ad6190e9e645e055127a.tar.gz |
Make modifications of "/etc/shells" robust so that they don't fail if the
last entry is removed.
Diffstat (limited to 'shells/tcsh')
-rw-r--r-- | shells/tcsh/pkg/PLIST | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shells/tcsh/pkg/PLIST b/shells/tcsh/pkg/PLIST index fd7af53983a..afa8fc1e9dd 100644 --- a/shells/tcsh/pkg/PLIST +++ b/shells/tcsh/pkg/PLIST @@ -1,5 +1,5 @@ -@comment $NetBSD: PLIST,v 1.5 1998/10/03 07:06:25 kim Exp $ +@comment $NetBSD: PLIST,v 1.6 2001/09/23 21:06:08 tron Exp $ bin/tcsh -@exec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak; echo %D/%F) >/etc/shells +@exec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak || true; echo %D/%F) >/etc/shells @unexec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak) >/etc/shells man/man1/tcsh.1 |