efl/po/xgettext_wrapper.sh

13 lines
151 B
Bash
Raw Normal View History

#!/bin/sh
ELUA_BIN="$ELUA"
if [ ! "$ELUA_BIN" ]; then
ELUA_BIN="$ELUA_INTREE"
export EFL_RUN_IN_TREE=1
fi
$ELUA_BIN :xgettext "$@"
2014-06-10 04:59:06 -07:00
exit $?