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:17:54 +0300
commit065e0b7ac946f65f080bf05e8f91a1a4214e2d24 (patch)
treee5632a1ceabaff534582b9bf1a05632f4add603c
parent6fd109bfcae5ab92fc27f6639fa70e33357d2646 (diff)
Silence warnings about bad .po filesv1.3.1
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.
-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}