From 065e0b7ac946f65f080bf05e8f91a1a4214e2d24 Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Mon, 10 Apr 2017 22:17:54 +0200 Subject: [PATCH] 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. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}