
this removes files owned by libgtk-3-common. Those bits were copied over from the gtk+2.0 package but they are actually obsolete and no longer required. Closes: #681198
12 lines
202 B
Bash
12 lines
202 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
#DEBHELPER#
|
|
|
|
if [ -d /@MODULES_BASE_PATH@ ]; then
|
|
# Purge the cache
|
|
rm -f /@MODULES_BASE_PATH@/immodules.cache
|
|
rmdir -p --ignore-fail-on-non-empty /@MODULES_BASE_PATH@
|
|
fi
|