summaryrefslogtreecommitdiffstats
path: root/t/recipes/checks/binaries/prerequisites/legacy-libbaz/build-spec/debian/lib.postinst
blob: ec0b98adf27bb081c29e768e3825c6aeb68e1ffe (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh -e

$PKG=libbaz1

if [ "$1" = "configure" ]; then
        if [ -d /usr/doc -a ! -e /usr/doc/$PKG -a -d /usr/share/doc/$PKG ]
; then
                ln -sf ../share/doc/$PKG /usr/doc/$PKG
        fi
fi