File: fix-parallel-builds

package info (click to toggle)
tuxpaint-config 0.17rc1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 4,240 kB
  • sloc: cpp: 3,485; makefile: 345; sh: 82; python: 20; ansic: 9
file content (15 lines) | stat: -rw-r--r-- 426 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: Fix a parallel build FTBFS
 Files were sometimes written to trans/ before that directory was created.
Author: Adrian Bunk <bunk@debian.org>

--- tuxpaint-config-0.0.13.orig/Makefile
+++ tuxpaint-config-0.0.13/Makefile
@@ -375,7 +375,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