From 6fb22ecfb1d293539c343e5cb93fdc189f682287 Mon Sep 17 00:00:00 2001 From: Nicolas Dechesne Date: Fri, 3 Jun 2016 17:15:53 +0200 Subject: [PATCH] makefile: create destination folder when installing files Signed-off-by: Nicolas Dechesne --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 675195c..401b8f3 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,7 @@ $1: $(call src_to_obj,$($1-srcs)) $3: $1 @echo "INSTALL $$<" - @install -m 755 $$< $$@ + @install -D -m 755 $$< $$@ all-install += $3 endef