diff options
author | tron <tron> | 2001-09-23 21:01:29 +0000 |
---|---|---|
committer | tron <tron> | 2001-09-23 21:01:29 +0000 |
commit | d62af28b74783148b21a8c18b182fbde0dbe3a90 (patch) | |
tree | b29b85408effe8dd04117842014bb17fb45b00b8 /shells/zsh3 | |
parent | fb9ecd7105413c9138b15f205c46b30df1916e22 (diff) | |
download | pkgsrc-d62af28b74783148b21a8c18b182fbde0dbe3a90.tar.gz |
Make modifications of "/etc/shells" robust so that they don't fail if
"/etc/shells" doesn't exist or is empty after removing entries for
cerntain shell. These problems show up e.g. under SunOS.
Diffstat (limited to 'shells/zsh3')
-rw-r--r-- | shells/zsh3/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/shells/zsh3/Makefile b/shells/zsh3/Makefile index 037bafdb061..5f568958991 100644 --- a/shells/zsh3/Makefile +++ b/shells/zsh3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2001/06/05 16:30:14 jtb Exp $ +# $NetBSD: Makefile,v 1.2 2001/09/23 21:01:30 tron Exp $ DISTNAME= zsh-3.0.8 CATEGORIES= shells @@ -22,8 +22,9 @@ LDFLAGS+= -static .endif post-install: + ${TOUCH} /etc/shells ${CP} /etc/shells /etc/shells.bak - (${GREP} -v ${PREFIX}/bin/zsh /etc/shells.bak; ${ECHO} ${PREFIX}/bin/zsh) >/etc/shells + (${GREP} -v ${PREFIX}/bin/zsh /etc/shells.bak || ${TRUE}; ${ECHO} ${PREFIX}/bin/zsh) >/etc/shells ${RM} /etc/shells.bak .include "../../mk/bsd.pkg.mk" |