Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2012-01-05 14:56:22 +0400
committerYann Leboulanger <asterix@lagaule.org>2012-01-05 14:56:22 +0400
commitd0a23f3200f8ff1b121041190eb69c930069e660 (patch)
tree6b04f9f87159027c58139081dd303774a74d0a6d /autogen.sh
parent359d3c3069c1e947bfbc1684b67121e425a71520 (diff)
generate POTFILES.skip in autogen.sh to skip plugins from translation. add command system files to translated files. Fixes #7068
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index b2e46611a..0f6b2ea86 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -20,8 +20,10 @@
&& for p in `ls data/gui/*.ui`; do echo "[type: gettext/glade]$p" >> \
po/POTFILES.in; done \
&& ls -1 data/gajim.desktop.in.in \
- src/*py src/common/*py src/common/zeroconf/*.py src/plugins/*.py| grep -v ipython_view.py >> \
- po/POTFILES.in || exit 1
+ src/*.py src/common/*.py src/command_system/implementation/*.py src/common/zeroconf/*.py src/plugins/*.py | grep -v ipython_view.py >> \
+ po/POTFILES.in \
+ && echo -e "data/gajim.desktop.in\nsrc/ipython_view.py" > po/POTFILES.skip \
+ && ls -1 plugins/*/*.py plugins/*/*.ui >> po/POTFILES.skip || exit 1
if test -z `which pkg-config 2>/dev/null`;then
echo "***Error: pkg-config not found***"
echo "See README.html for build requirements."