#! /bin/sh set -e if [ "$1" = configure ]; then if [ -d /usr/include/python3.5 ] && [ ! -h /usr/include/python3.5 ]; then if rmdir /usr/include/python3.5 2> /dev/null; then ln -sf python3.5mu /usr/include/python3.5 else echo >&2 "WARNING: non-empty directory on upgrade: /usr/include/python3.5" ls -l /usr/include/python3.5 fi fi if [ -d /usr/lib/python3.5/config ] && [ ! -h /usr/lib/python3.5/config ]; then if rmdir /usr/lib/python3.5/config 2> /dev/null; then ln -sf config-3.5mu /usr/lib/python3.5/config else echo >&2 "WARNING: non-empty directory on upgrade: /usr/lib/python3.5/config" ls -l /usr/lib/python3.5/config fi fi fi exit 0