projects
/
platform
/
upstream
/
efl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b095f72
)
elua: support for fallback xgettext in xgettext_wrapper
author
Daniel Kolesa
<d.kolesa@samsung.com>
Tue, 10 Jun 2014 12:19:24 +0000
(13:19 +0100)
committer
Daniel Kolesa
<d.kolesa@samsung.com>
Tue, 10 Jun 2014 14:48:53 +0000
(15:48 +0100)
po/xgettext_wrapper.sh
patch
|
blob
|
history
diff --git
a/po/xgettext_wrapper.sh
b/po/xgettext_wrapper.sh
index 07ae8042d757b932ac74356f25f735436b6b2995..73463bc4c7dc00a4a356098e9fc948a722bfd743 100755
(executable)
--- a/
po/xgettext_wrapper.sh
+++ b/
po/xgettext_wrapper.sh
@@
-7,6
+7,10
@@
if [ ! "$ELUA_BIN" ]; then
export EFL_RUN_IN_TREE=1
fi
-$ELUA_BIN :xgettext "$@"
+if [ -x "$ELUA_BIN" ]; then
+ $ELUA_BIN :xgettext "$@"
+else
+ $XGETTEXT "$@"
+fi
exit $?