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.
This commit is contained in:
parent
6fd109bfca
commit
065e0b7ac9
1 changed files with 1 additions and 1 deletions
|
@ -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}
|
||||
|
|
Loading…
Add table
Reference in a new issue