10 lines
433 B
Bash
Executable File
10 lines
433 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
# Automatically added by dh_installemacsen/12
|
|
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
|
|
if [ -e /var/lib/emacsen-common/state/package/installed/emacsen-common -a -x /usr/lib/emacsen-common/emacs-package-install ] ; then
|
|
/usr/lib/emacsen-common/emacs-package-install --postinst cmake-data
|
|
fi
|
|
fi
|
|
# End automatically added section
|