diff options
author | Daniel Kolesa <d.kolesa@samsung.com> | 2014-11-11 15:07:03 +0000 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@samsung.com> | 2014-11-11 15:07:03 +0000 |
commit | 1884e4813ae1a4b284fc899d9d219f9bd02e890b (patch) | |
tree | 698fea243fd32d4e25fd2dc20c1461748ad94a87 /po | |
parent | 513d6f397e3c919d3b2df3db28c5b0e91152c8f7 (diff) |
po: disable xgettext_wrapper for the time being (not really used and possibly won't be)
Diffstat (limited to 'po')
-rw-r--r-- | po/Makevars (renamed from po/Makevars.in) | 9 | ||||
-rwxr-xr-x | po/xgettext_wrapper.sh | 16 |
2 files changed, 0 insertions, 25 deletions
diff --git a/po/Makevars.in b/po/Makevars index 0350cbc899..22837aba49 100644 --- a/po/Makevars.in +++ b/po/Makevars | |||
@@ -7,15 +7,6 @@ DOMAIN = $(PACKAGE) | |||
7 | subdir = po | 7 | subdir = po |
8 | top_builddir = .. | 8 | top_builddir = .. |
9 | 9 | ||
10 | # Save xgettext path | ||
11 | XGETTEXT_FALLBACK := $(XGETTEXT) | ||
12 | |||
13 | # Override xgettext with a LuaJIT aware variant (which calls | ||
14 | # into plain xgettext if it needs to, and handles Lua on its own) | ||
15 | XGETTEXT = ELUA_INTREE="$(top_srcdir)/src/bin/elua/elua@EXEEXT@" \ | ||
16 | ELUA="@elua_bin@" XGETTEXT="$(XGETTEXT_FALLBACK)" \ | ||
17 | $(top_srcdir)/po/xgettext_wrapper.sh | ||
18 | |||
19 | # These options get passed to xgettext. | 10 | # These options get passed to xgettext. |
20 | XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user | 11 | XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user |
21 | 12 | ||
diff --git a/po/xgettext_wrapper.sh b/po/xgettext_wrapper.sh deleted file mode 100755 index 730d2fd18c..0000000000 --- a/po/xgettext_wrapper.sh +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | ELUA_BIN="$ELUA" | ||
4 | |||
5 | if [ ! "$ELUA_BIN" ]; then | ||
6 | ELUA_BIN="${ELUA_INTREE}" | ||
7 | export EFL_RUN_IN_TREE=1 | ||
8 | fi | ||
9 | |||
10 | if [ -x "$ELUA_BIN" ]; then | ||
11 | $ELUA_BIN xgettext "$@" | ||
12 | else | ||
13 | $XGETTEXT "$@" | ||
14 | fi | ||
15 | |||
16 | exit $? | ||