Improve uninstalling python sbin programs.
This commit is contained in:
parent
692afe7f81
commit
04e98a8004
2 changed files with 8 additions and 4 deletions
|
@ -250,6 +250,7 @@ if test "x$want_python" = "xyes"; then
|
||||||
pythondir=`echo ${pythondir} | sed -e 's,[$][{]prefix[}],${pyprefix},g'`
|
pythondir=`echo ${pythondir} | sed -e 's,[$][{]prefix[}],${pyprefix},g'`
|
||||||
pyexecdir=`echo ${pyexecdir} | sed -e 's,[$][{]exec_prefix[}],${pyprefix},g'`
|
pyexecdir=`echo ${pyexecdir} | sed -e 's,[$][{]exec_prefix[}],${pyprefix},g'`
|
||||||
fi
|
fi
|
||||||
|
PYTHON_EXEC_PREFIX=$($PYTHON -c 'import sys; print sys.exec_prefix')
|
||||||
else
|
else
|
||||||
# Namespace support requires Python support
|
# Namespace support requires Python support
|
||||||
want_linux_netns=no
|
want_linux_netns=no
|
||||||
|
|
|
@ -7,6 +7,8 @@
|
||||||
# Makefile for building netns components.
|
# Makefile for building netns components.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
PYSBINDIR = ${PYTHON_EXEC_PREFIX}/sbin
|
||||||
|
|
||||||
if WANT_NETNS
|
if WANT_NETNS
|
||||||
SUBDIRS = src ns3
|
SUBDIRS = src ns3
|
||||||
endif
|
endif
|
||||||
|
@ -22,10 +24,11 @@ install-exec-hook:
|
||||||
|
|
||||||
# Python package uninstall
|
# Python package uninstall
|
||||||
uninstall-hook:
|
uninstall-hook:
|
||||||
rm -f ${SBINDIR}/core-daemon
|
rm -f ${PYSBINDIR}/core-daemon
|
||||||
rm -f ${SBINDIR}/coresendmsg
|
rm -f ${PYSBINDIR}/coresendmsg
|
||||||
rm -f ${SBINDIR}/core-cleanup
|
rm -f ${PYSBINDIR}/core-cleanup
|
||||||
rm -f ${SBINDIR}/core-xen-cleanup
|
rm -f ${PYSBINDIR}/core-xen-cleanup
|
||||||
|
rm -f ${PYSBINDIR}/core-manage
|
||||||
rm -f ${pythondir}/core_python-${COREDPY_VERSION}-py${PYTHON_VERSION}.egg-info
|
rm -f ${pythondir}/core_python-${COREDPY_VERSION}-py${PYTHON_VERSION}.egg-info
|
||||||
rm -f ${pythondir}/core_python_netns-1.0-py${PYTHON_VERSION}.egg-info
|
rm -f ${pythondir}/core_python_netns-1.0-py${PYTHON_VERSION}.egg-info
|
||||||
rm -rf ${pythondir}/core
|
rm -rf ${pythondir}/core
|
||||||
|
|
Loading…
Add table
Reference in a new issue