From 720ad711036cf07a05fddf3dde13c87b4b36ec2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ertu=C4=9Frul=20Erata?= Date: Tue, 14 Feb 2017 22:41:54 +0300 Subject: [PATCH] efibootmgr fix build --- system/boot/efibootmgr/actions.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/system/boot/efibootmgr/actions.py b/system/boot/efibootmgr/actions.py index 456a4fbdc9..065cb84029 100644 --- a/system/boot/efibootmgr/actions.py +++ b/system/boot/efibootmgr/actions.py @@ -15,11 +15,13 @@ def build(): def install(): pisitools.dosed("Makefile","BINDIR := /usr/sbin","BINDIR := %s/usr/sbin" % get.installDIR()) + shelltools.makedirs("%s/usr/sbin" % get.installDIR()) - shelltools.makedirs("%s/usr/lib" % get.installDIR()) + #shelltools.makedirs("%s/usr/lib" % get.installDIR()) shelltools.makedirs("%s/usr/share/man" % get.installDIR()) shelltools.makedirs("%s/usr/include" % get.installDIR()) + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - pisitools.insinto("/usr/lib", "src/lib/*.o") - pisitools.insinto("/usr/share/man", "src/man/*") + # pisitools.insinto("/usr/lib", "src/lib/*.o") + pisitools.insinto("/usr/share/man", "src/*.8") pisitools.insinto("/usr/include", "src/include/*.h")