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

github.com/majn/telegram-purple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2017-04-10 23:17:54 +0300
committerBen Wiederhake <BenWiederhake.GitHub@gmx.de>2017-04-10 23:18:17 +0300
commit05d1d512cff1398938142af20a97d8db20e6c8aa (patch)
tree64c8961a1df9f019283bc0da164d21feae344b65 /Makefile.in
parent712bc530c66dd08f7073d13b51a039a9e1d7500a (diff)
Silence warnings about bad .po files
Sadly, Transifex doesn't seem to acknowledge that the generated files are bad. Also, I don't want to introduce any infrastructure to fix the files every time after I download them. So they stay broken, and the warnings must be silenced. Sadly, this means that future warnings will get ignored, too. Let's hope this won't go too bad.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index e3ebd84..fdeddb4 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -108,7 +108,7 @@ ${PLUGIN_OBJECTS}: ${OBJ}/%.o: ${srcdir}/%.c tgl/libs/libtgl.a | create_dirs
echo $@ && ${CC} ${CFLAGS} ${CPPFLAGS} -I ${srcdir}/tgl -c -MP -MD -MF ${DEP}/$*.d -MQ ${OBJ}/$*.o -o $@ $<
po/%.mo: po/%.po
- ${MSGFMT_PATH} -cf -o $@ $<
+ ${MSGFMT_PATH} -cf -o $@ $< >/dev/null 2>&1
${PRPL_LIBNAME}: ${PLUGIN_OBJECTS} tgl/libs/libtgl.a | create_dirs
${CC} -shared -o $@ $^ ${LDFLAGS}