mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
1f23d427f6
- Create symlink for /bin/tcsh (instead of installing full package) for -current/-stable (requested by obrien) PR: 19853 Submitted by: Ports Fury
5 lines
317 B
Plaintext
5 lines
317 B
Plaintext
@exec ln -sf /bin/tcsh %D/bin/tcsh
|
|
@unexec rm -f %D/bin/tcsh
|
|
@exec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/bin/tcsh /etc/shells.bak; echo %D/bin/tcsh) >/etc/shells
|
|
@unexec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/bin/tcsh /etc/shells.bak) >/etc/shells
|