@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.
This commit is contained in:
Masafumi Max NAKANE 1997-09-06 17:52:52 +00:00
parent cc911a6d32
commit 3f73d91a41
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=7789
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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