File: 90_prevent_parallel_build.patch

package info (click to toggle)
wordnet 1%3A3.0-41
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,552 kB
  • sloc: sh: 10,746; ansic: 5,882; yacc: 762; ruby: 634; lex: 419; python: 319; makefile: 137
file content (28 lines) | stat: -rw-r--r-- 959 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Description: Prevent parallel builds of grind because this might lead to
 FTBFS in some cases
Author: Jakub Wilk <ubanus@users.sf.net>
Bug-Debian: http://bugs.debian.org/540491

--- a/src/grind/Makefile.in
+++ b/src/grind/Makefile.in
@@ -512,3 +512,8 @@ uninstall-am: uninstall-binPROGRAMS
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.
 .NOEXPORT:
+
+# Prevent parallel builds as it was advised by Jakub Wilk <ubanus@users.sf.net>
+# see http://bugs.debian.org/540491
+.NOTPARALLEL:
+
--- a/Makefile.in
+++ b/Makefile.in
@@ -657,3 +657,9 @@ dist-hook:
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.
 .NOEXPORT:
+
+# Prevent parallel builds as it was advised by Jakub Wilk <ubanus@users.sf.net>
+# see http://bugs.debian.org/540491
+# I hope this also fixes #549768
+.NOTPARALLEL:
+