1From 460646b3c4c1718860915c38586ee8d2fbda38e4 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?J=C3=B6rg=20Krause?= <joerg.krause@embedded.rocks>
3Date: Sun, 1 Feb 2015 21:53:47 +0100
4Subject: [PATCH] tools only in no dot config targets
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9Revert upstream commit c7ad5cbb1ef2c33883f0fa7d0455095004fd306d:
10
11    Makefile: drop "tools-only" from no-dot-config-targets
12
13This indirectly pulls in a build-dependency on libssl-dev used for FIT
14image support, and possibly GPL/OpenSSL licensing incompatibility
15issues.
16
17Based on Debian patch from u-boot-tools:
18http://ftp.de.debian.org/debian/pool/main/u/u-boot/u-boot_2014.10+dfsg1-2.1.debian.tar.xz
19
20Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
21[fabio: adapt it to 2016.09]
22Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
23[Fabrice: adapt it to 2021.04]
24Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
25---
26 Makefile | 2 +-
27 1 file changed, 1 insertion(+), 1 deletion(-)
28
29diff --git a/Makefile b/Makefile
30index 6aa08964ff..fcec83d183 100644
31--- a/Makefile
32+++ b/Makefile
33@@ -486,7 +486,7 @@ defaultenv_h := include/generated/defaultenv_autogenerated.h
34
35 no-dot-config-targets := clean clobber mrproper distclean \
36 			 help %docs check% coccicheck \
37-			 ubootversion backup tests check qcheck tcheck
38+			 ubootversion backup tests tools-only check qcheck tcheck
39
40 config-targets := 0
41 mixed-targets  := 0
42--
432.20.1
44
45