diff options
author | jgh <jgh@FreeBSD.org> | 2014-12-10 05:30:14 +0800 |
---|---|---|
committer | jgh <jgh@FreeBSD.org> | 2014-12-10 05:30:14 +0800 |
commit | f921d470621493c635e9a8a824c89d144e8ebe57 (patch) | |
tree | ad34f8e90629a1784c609e679b2dbd2570cb622a /shells/fish | |
parent | fb4fa52074d3dc86042d5a7b4ca39cf07e337f4b (diff) | |
download | freebsd-ports-gnome-f921d470621493c635e9a8a824c89d144e8ebe57.tar.gz freebsd-ports-gnome-f921d470621493c635e9a8a824c89d144e8ebe57.tar.zst freebsd-ports-gnome-f921d470621493c635e9a8a824c89d144e8ebe57.zip |
- drop redundant and erroneous cleanup of shell listing in /etc/shells
PR: 195487
Submitted by: braakvaak@aol.com
Approved by: freebsd.users@gmail.com (maintainer)
Diffstat (limited to 'shells/fish')
-rw-r--r-- | shells/fish/Makefile | 2 | ||||
-rw-r--r-- | shells/fish/pkg-deinstall | 7 |
2 files changed, 1 insertions, 8 deletions
diff --git a/shells/fish/Makefile b/shells/fish/Makefile index 8b9d85375724..06f5f748f88a 100644 --- a/shells/fish/Makefile +++ b/shells/fish/Makefile @@ -3,7 +3,7 @@ PORTNAME= fish PORTVERSION= 2.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= shells MASTER_SITES= http://fishshell.com/files/${PORTVERSION}/ diff --git a/shells/fish/pkg-deinstall b/shells/fish/pkg-deinstall deleted file mode 100644 index a3c046a0658c..000000000000 --- a/shells/fish/pkg-deinstall +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -if [ "$2" = "DEINSTALL" ]; then - /bin/cp /etc/shells /etc/shells.bak - /usr/bin/grep -v '/usr/local/bin/fish' /etc/shells.bak >> /etc/shells - /bin/rm -f /etc/shells.bak -fi |