#!/bin/sh
# Copyright (C) 2000-2012 Synology Inc. All rights reserved.

PYTHON_VER="python2.7"
TARGET_LIB="/usr/local/lib"/$PYTHON_VER
TARGET_INC="/usr/local/include"/$PYTHON_VER
TARGET_BIN="/usr/local/bin"

rm -f ${TARGET_BIN}/python2*
rm -f ${TARGET_BIN}/python
rm -f  /usr/bin/python
rm -fr ${TARGET_LIB}
rm -fr ${TARGET_INC}
rm -f /usr/lib/libpython2.7.so*
rm -f /usr/lib/libyaml*

exit 0
