[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20181215153051.13166-1-bluca@debian.org>
Date: Sat, 15 Dec 2018 15:30:48 +0000
From: Luca Boccassi <bluca@...ian.org>
To: netdev@...r.kernel.org
Cc: stephen@...workplumber.org, Luca Boccassi <bluca@...ian.org>,
petr.vorel@...il.com
Subject: [PATCH iproute2 1/4] Makefile: have check target depend on all
Otherwise it will simply fail immediately from a just-cleaned
workspace:
$ make check -j1
cd testsuite && make && make alltests
echo "Entering iproute2" && cd iproute2 && make configure && cd ..;
Entering iproute2
make -C tools
Makefile:3: ../../config.mk: No such file or directory
make[2]: *** No rule to make target '../../config.mk'. Stop.
Fixes: 8804a8c0d387 ("Makefile: Add check target")
Cc: petr.vorel@...il.com
Signed-off-by: Luca Boccassi <bluca@...ian.org>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index b7488add..20c760e2 100644
--- a/Makefile
+++ b/Makefile
@@ -119,7 +119,7 @@ clobber:
distclean: clobber
-check:
+check: all
cd testsuite && $(MAKE) && $(MAKE) alltests
cscope:
--
2.19.2
Powered by blists - more mailing lists