summaryrefslogtreecommitdiffstats
path: root/config.profiles/harmattan/qt4-linguist-tools.postinst
blob: 2453b95c2c206280221ee028349a1c11096ca599 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

PREFIX=native
if [ -f /targets/links/scratchbox.config ]; then
    PREFIX=host
fi

BINARIES="lrelease"

for bin in $BINARIES; do
    ln -sf "/usr/bin/${PREFIX}-${bin}" "/usr/bin/${bin}"
done

#DEBHELPER#