Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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
  • Loading branch information
pmenzel committed Aug 14, 2019
1 parent abbebca commit d5e4bb3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions crash.be0
Expand Up @@ -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}"'

###############################################################################
Expand Down

0 comments on commit d5e4bb3

Please sign in to comment.