python-cryptography: bump to version 1.7.2
[buildroot-gz.git] / package / tinydtls / 0002-Fix-compilation-of-tests-directory.patch
blob0ab579c45e707d38fcc323fec0fd494c65e4e05f
1 From c629a108f5d03cd365c0ba71143ad507f6cd97f0 Mon Sep 17 00:00:00 2001
2 From: Fabrice Fontaine <fabrice.fontaine@orange.com>
3 Date: Thu, 28 Jul 2016 08:36:06 +0200
4 Subject: [PATCH] Fix compilation of tests directory
6 binaries in tests subdirectory depends on libtinydtls so add $(LIB) dependency
7 for dirs target in Makefile.in
9 Signed-off-by: Fabrice Fontaine <fabrice.fontaine@orange.com>
10 ---
11 Makefile.in | 4 ++--
12 1 file changed, 2 insertions(+), 2 deletions(-)
14 diff --git a/Makefile.in b/Makefile.in
15 index 7dcd424..c493705 100644
16 --- a/Makefile.in
17 +++ b/Makefile.in
18 @@ -68,8 +68,8 @@ check:
19 echo top_builddir: $(top_builddir)
20 $(MAKE) -C tests check
22 -dirs: $(SUBDIRS)
23 - for dir in $^; do \
24 +dirs: $(LIB) $(SUBDIRS)
25 + for dir in $(SUBDIRS); do \
26 $(MAKE) -C $$dir ; \
27 done
29 --
30 2.7.4