Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/12405
-gerrit
commit 6b32bb19e37ea5f6565596d4eb068670417d7109 Author: Denis 'GNUtoo' Carikli GNUtoo@no-log.org Date: Wed Nov 11 05:44:10 2015 +0100
nvramtool: Makefile: install: use $(INSTALL) instead of mkdir
Change-Id: Icee9b37030558d12da74f898c7f78625a5735277 Signed-off-by: Denis 'GNUtoo' Carikli GNUtoo@no-log.org --- util/nvramtool/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/util/nvramtool/Makefile b/util/nvramtool/Makefile index b92adda..09c3ed9 100644 --- a/util/nvramtool/Makefile +++ b/util/nvramtool/Makefile @@ -59,9 +59,9 @@ dep: @$(CC) -MM -MG *.c > .dependencies
install: $(PROGRAM) - mkdir -p $(DESTDIR)$(PREFIX)/sbin + $(INSTALL) -d $(DESTDIR)$(PREFIX)/sbin + $(INSTALL) -d $(DESTDIR)$(PREFIX)/share/man/man8 $(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin - mkdir -p $(DESTDIR)$(PREFIX)/share/man/man8 $(INSTALL) -p -m644 cli/$(PROGRAM).8 $(DESTDIR)$(PREFIX)/share/man/man8
.PHONY: all clean distclean dep