summaryrefslogtreecommitdiff
path: root/libc/debian/libc1-illumos-i386.postinst
blob: 35e039a1939d47d39ef792b3789732eb7ac12610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

if [ "$1" = configure ]; then
    if [ -z "$2" ]; then # new install
        # This was a mistake. Remove it when we will not ship libraries here
        # (32-bit libraries are in /lib32 and /usr/lib32)
        crle -32 -u -l /lib/i386-illumos -l /usr/lib/i386-illumos || true
    fi
fi

#DEBHELPER#