Source: zxcvbn-c
Version: 2.4+dfsg-1
Severity: serious
Tags: patch ftbfs

https://buildd.debian.org/status/package.php?p=zxcvbn-c&suite=sid

...
In file included from test-internals.c:9:
zxcvbn.c:455:10: fatal error: dict-src.h: No such file or directory
 #include "dict-src.h"
          ^~~~~~~~~~~~
compilation terminated.
make[1]: *** [makefile:49: test-internals] Error 1


Fix is attached.
Description: Fix a parallel FTBFS caused by a missing makefile dependency
Author: Adrian Bunk <b...@debian.org>

--- zxcvbn-c-2.4+dfsg.orig/makefile
+++ zxcvbn-c-2.4+dfsg/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
 

Reply via email to