summaryrefslogtreecommitdiff
path: root/po/xgettext_wrapper.sh
blob: 5aee06f4a97b5b2314617b6039c87cc6890667a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

ELUA_BIN="$ELUA"

if [ ! "$ELUA_BIN" ]; then
    ELUA_BIN="$ELUA_INTREE"
    export EFL_RUN_IN_TREE=1
fi

$ELUA_BIN :xgettext "$@"

exit $?