Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
17 lines
223 B
Bash
17 lines
223 B
Bash
#!/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#
|