diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-02 10:07:49 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-02 10:07:49 +0000 |
commit | 38a0a8023026a77ded1e6de618b567c7b58e79a4 (patch) | |
tree | abf5fbbdc4b27a245ff76b9850f4eb6e73e4ba19 /sysutils/ispman/pkg-deinstall | |
parent | d081961986dd18a78c82ebba45ba59149d1b7d49 (diff) | |
download | ports-38a0a8023026a77ded1e6de618b567c7b58e79a4.tar.gz ports-38a0a8023026a77ded1e6de618b567c7b58e79a4.zip |
Remove non staged ports without pending PR from s*
Notes
Notes:
svn path=/head/; revision=366980
Diffstat (limited to 'sysutils/ispman/pkg-deinstall')
-rw-r--r-- | sysutils/ispman/pkg-deinstall | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/sysutils/ispman/pkg-deinstall b/sysutils/ispman/pkg-deinstall deleted file mode 100644 index 8fc6c660e006..000000000000 --- a/sysutils/ispman/pkg-deinstall +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -# - -case $2 in - DEINSTALL) - # Remove real files which was copied from *.default. - for i in lib templates; do - for j in `find ${PKG_PREFIX}/ispman/${i} -name '*.default'`; do - real=${j%.default} - cmp -s $j $real && rm -rf $real - done - done - ;; -esac - -exit 0 |