diff options
author | max <max@FreeBSD.org> | 1997-09-07 01:52:52 +0800 |
---|---|---|
committer | max <max@FreeBSD.org> | 1997-09-07 01:52:52 +0800 |
commit | 6fd3f5a3c4b09ad5502b9e31cd329ec450eca486 (patch) | |
tree | 63d3d52071fe4904f03a3800eb03c91cc889e32a /shells/zsh | |
parent | 3fc9bfb560cd94e541340a05119ca21d03f25bc9 (diff) | |
download | freebsd-ports-gnome-6fd3f5a3c4b09ad5502b9e31cd329ec450eca486.tar.gz freebsd-ports-gnome-6fd3f5a3c4b09ad5502b9e31cd329ec450eca486.tar.zst freebsd-ports-gnome-6fd3f5a3c4b09ad5502b9e31cd329ec450eca486.zip |
@exec/@unexec directives that use %[FD] should never be put at the
very beginning of the file. This has been causing pkg_add to fail.
Diffstat (limited to 'shells/zsh')
-rw-r--r-- | shells/zsh/pkg-plist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shells/zsh/pkg-plist b/shells/zsh/pkg-plist index af202914bc40..196983ead94a 100644 --- a/shells/zsh/pkg-plist +++ b/shells/zsh/pkg-plist @@ -1,6 +1,6 @@ +bin/zsh @exec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak; 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 -bin/zsh bin/zsh-3.0.4 @unexec install-info --delete %D/info/zsh.info %D/info/dir info/zsh.info |