Attention is currently required from: maciej.gabryelski@3mdeb.com, Stefan Reinauer.
Hello maciej.gabryelski@3mdeb.com,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/70104
to review the following change.
Change subject: util/inteltool/Makefile : improve cross-compilation support ......................................................................
util/inteltool/Makefile : improve cross-compilation support
Use tool from INSTALL variable to create directory instead of mkdir to be compatible with other cross-compilation buildsystems (like Yocto)
Signed-off-by: Maciej Gabryelski maciej.gabryelski@3mdeb.com Change-Id: I0b0949d07baae1ae1d7b22ac3d0b8913f81d89c1 --- M util/inteltool/Makefile 1 file changed, 15 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/04/70104/1
diff --git a/util/inteltool/Makefile b/util/inteltool/Makefile index 3b692fd..e6e122b 100644 --- a/util/inteltool/Makefile +++ b/util/inteltool/Makefile @@ -77,9 +77,9 @@ @rm -rf .test.c .test .test.dSYM
install: $(PROGRAM) - mkdir -p $(DESTDIR)$(PREFIX)/sbin + $(INSTALL) -d $(DESTDIR)$(PREFIX)/sbin $(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin - mkdir -p $(DESTDIR)$(PREFIX)/share/man/man8 + $(INSTALL) -d $(DESTDIR)$(PREFIX)/share/man/man8 $(INSTALL) -p -m644 $(PROGRAM).8 $(DESTDIR)$(PREFIX)/share/man/man8
.PHONY: all clean distclean dep pciutils