[PATCH] tools/bootconfig: Makefile: Create destination directory

From: Adriana Kobylak
Date: Mon Mar 16 2020 - 11:49:36 EST


From: Adriana Kobylak <anoo@xxxxxxxxxx>

The DESTDIR path may not be available to the caller, such as
compiling the bootconfig tool from a Yocto native recipe. Have
the Makefile create the directory instead.

Signed-off-by: Adriana Kobylak <anoo@xxxxxxxxxx>
---
tools/bootconfig/Makefile | 1 +
1 file changed, 1 insertion(+)

diff --git a/tools/bootconfig/Makefile b/tools/bootconfig/Makefile
index a6146ac..470b6f0 100644
--- a/tools/bootconfig/Makefile
+++ b/tools/bootconfig/Makefile
@@ -14,6 +14,7 @@ bootconfig: ../../lib/bootconfig.c main.c $(HEADER)
$(CC) $(filter %.c,$^) $(CFLAGS) -o $@

install: $(PROGS)
+ install -d $(DESTDIR)$(bindir)
install bootconfig $(DESTDIR)$(bindir)

test: bootconfig
--
1.8.3.1