17 lines
223 B
Plaintext
17 lines
223 B
Plaintext
|
#!/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#
|