From d5e4bb3e6f13952a136fce8c3d34273f4e7ba49b Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Wed, 14 Aug 2019 12:55:25 +0200 Subject: [PATCH] crash: Create install directories Fix the [error][1] below. [BEE] make -j120 install PREFIX=/usr EPREFIX=/usr BINDIR=/usr/bin SBINDIR=/usr/sbin LIBEXECDIR=/usr/libexec SYSCONFDIR=/etc SHAREDSTATEDIR=/var LOCALSTATEDIR=/var LIBDIR=/usr/lib INCLUDEDIR=/usr/include DATAROOTDIR=/usr/share DATADIR=/usr/share INFODIR=/usr/share/info LOCALEDIR=/usr/share/locale MANDIR=/usr/share/man DOCDIR=/usr/share/doc/crash DESTDIR=/dev/shm/bee-root/crash/crash-7.2.6-0/image /usr/bin/install crash /dev/shm/bee-root/crash/crash-7.2.6-0/image/usr/bin /usr/bin/install: cannot create regular file '/dev/shm/bee-root/crash/crash-7.2.6-0/image/usr/bin': No such file or directory make: *** [Makefile:306: install] Error 1 Command exited with non-zero status 2 [1]: https://github.com/crash-utility/crash/pull/37 --- crash.be0 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/crash.be0 b/crash.be0 index 4e08b0dce..55ca5aca3 100755 --- a/crash.be0 +++ b/crash.be0 @@ -55,9 +55,10 @@ SRCURL[0]="https://github.com/crash-utility/crash/archive/${PKGVERSION}.tar.gz c # bee_build #} -#mee_install() { -# bee_install -#} +mee_install() { + mkdir -p ${D}/${BINDIR} + bee_install +} ## by default this may be 'make install DESTDIR="${D}"' ###############################################################################