diff options
Diffstat (limited to 'debian/postinst')
-rw-r--r-- | debian/postinst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/postinst b/debian/postinst index 7aa2898..ea573b7 100644 --- a/debian/postinst +++ b/debian/postinst @@ -33,7 +33,7 @@ fi # doc base support if [ "$1" = configure ]; then - if command -v install-docs >/dev/null 2>&1; then - install-docs -i /usr/share/doc-base/slib + if test -x /usr/sbin/install-docs >/dev/null 2>&1; then + /usr/sbin/install-docs -i /usr/share/doc-base/slib fi fi |