mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-08 16:13:50 +02:00
python-Twisted: fix absolute paths in INSTALL/REMOVE scripts
This commit is contained in:
parent
b14af9f598
commit
08a09917cd
3 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
case ${ACTION} in
|
||||
purge)
|
||||
find /usr/lib/python2.7/site-packages/twisted/plugins -name dropin.cache | xargs -r rm -f
|
||||
find usr/lib/python2.7/site-packages/twisted/plugins -name dropin.cache | xargs -r rm -f
|
||||
;;
|
||||
esac
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
case ${ACTION} in
|
||||
purge)
|
||||
find /usr/lib/python3.*/site-packages/twisted/plugins -name dropin.cache | xargs -r rm -f
|
||||
find usr/lib/python3.*/site-packages/twisted/plugins -name dropin.cache | xargs -r rm -f
|
||||
;;
|
||||
esac
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'python-Twisted'
|
||||
pkgname=python-Twisted
|
||||
version=18.7.0
|
||||
revision=1
|
||||
revision=2
|
||||
wrksrc="Twisted-${version}"
|
||||
build_style=python-module
|
||||
pycompile_module="twisted"
|
||||
|
|
Loading…
Add table
Reference in a new issue