1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Fix a parallel build FTBFS
Files were sometimes written to trans/ before that directory was created.
Based on similar patch for tuxpaint-config
Author: Adrian Bunk <bunk@debian.org>
Jonathan Carter <jcc@debian.org>
Index: tuxpaint-0.9.23/Makefile
===================================================================
--- tuxpaint-0.9.23.orig/Makefile
+++ tuxpaint-0.9.23/Makefile
@@ -438,7 +438,7 @@ endif
# Build the translation files for gettext
-$(MOFILES): trans/%.mo: src/po/%.po
+$(MOFILES): trans/%.mo: src/po/%.po trans
msgfmt -o $@ $<
.PHONY: translations
|