Commit fd13247a authored by Guido Martínez's avatar Guido Martínez Committed by Thomas Petazzoni
Browse files

scripts: mkmakefile: set umask before calling BR's makefile



Small optimization so we don't have another 'make' level (caused by the
umask fix) when running the generated makefile.

Signed-off-by: default avatarGuido Martínez <guido@vanguardiasur.com.ar>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent e8810036
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ MAKEFLAGS += --no-print-directory
all	:= \$(filter-out Makefile,\$(MAKECMDGOALS))

_all:
	\$(MAKE) \$(MAKEARGS) \$(all)
	umask 0022 && \$(MAKE) \$(MAKEARGS) \$(all)

Makefile:;