File: parallel.patch

package info (click to toggle)
zxcvbn-c 2.4%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 6,976 kB
  • sloc: ansic: 1,739; cpp: 1,452; makefile: 253; python: 224
file content (21 lines) | stat: -rw-r--r-- 674 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Adrian Bunk <bunk@debian.org>
Date: Sun, 9 Sep 2018 08:20:31 -0700
Subject: Fix a parallel FTBFS caused by a missing makefile dependency

---
 makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/makefile b/makefile
index 6223330..5e8ea98 100644
--- a/makefile
+++ b/makefile
@@ -45,7 +45,7 @@ test-inline: test.c zxcvbn-inline.o
 	$(CC) $(CPPFLAGS) $(CFLAGS) \
 		-o test-inline test.c zxcvbn-inline.o $(LDFLAGS) -lm
 
-test-internals: test-internals.c zxcvbn.c dict-crc.h zxcvbn.h
+test-internals: test-internals.c zxcvbn.c dict-src.h dict-crc.h zxcvbn.h
 	$(CC) $(CPPFLAGS) $(CFLAGS) \
 		-o test-internals test-internals.c $(LDFLAGS) -lm