68a978a26f
from new maintainer Aleksander Piotrowski <aleksander dot piotrowski at nic dot com dot pl> more to come
17 lines
263 B
Bash
17 lines
263 B
Bash
#!/bin/sh
|
|
#
|
|
# $OpenBSD: DEINSTALL-idle,v 1.1 2003/12/13 15:03:08 sturm Exp $
|
|
#
|
|
# Clean up python symlink, if it was ours.
|
|
#
|
|
|
|
set -e
|
|
PATH=/bin
|
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
|
|
|
if [ ${PREFIX}/bin/idle -ef ${PREFIX}/bin/idle2.1 ]
|
|
then
|
|
rm -f ${PREFIX}/bin/idle
|
|
fi
|
|
|