mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
From c629a108f5d03cd365c0ba71143ad507f6cd97f0 Mon Sep 17 00:00:00 2001
|
||||
From: Fabrice Fontaine <fabrice.fontaine@orange.com>
|
||||
Date: Thu, 28 Jul 2016 08:36:06 +0200
|
||||
Subject: [PATCH] Fix compilation of tests directory
|
||||
|
||||
binaries in tests subdirectory depends on libtinydtls so add $(LIB) dependency
|
||||
for dirs target in Makefile.in
|
||||
|
||||
Signed-off-by: Fabrice Fontaine <fabrice.fontaine@orange.com>
|
||||
---
|
||||
Makefile.in | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/Makefile.in b/Makefile.in
|
||||
index 7dcd424..c493705 100644
|
||||
--- a/Makefile.in
|
||||
+++ b/Makefile.in
|
||||
@@ -68,8 +68,8 @@ check:
|
||||
echo top_builddir: $(top_builddir)
|
||||
$(MAKE) -C tests check
|
||||
|
||||
-dirs: $(SUBDIRS)
|
||||
- for dir in $^; do \
|
||||
+dirs: $(LIB) $(SUBDIRS)
|
||||
+ for dir in $(SUBDIRS); do \
|
||||
$(MAKE) -C $$dir ; \
|
||||
done
|
||||
|
||||
--
|
||||
2.7.4
|
||||
|
||||
Reference in New Issue
Block a user