File: fix-parallel-builds

package info (click to toggle)
tuxpaint 1%3A0.9.23-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 36,360 kB
  • sloc: ansic: 39,091; makefile: 1,199; sh: 514; php: 310; cpp: 119; python: 75
file content (19 lines) | stat: -rw-r--r-- 599 bytes parent folder | download | duplicates (2)
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