From 0fbeae76eb0816bcc970076a1667032f6d8dcbcc Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Fri, 30 Jun 2017 16:14:31 +0200 Subject: [PATCH] julia: Do not use bee_build and bee_install The make parameter DOCDIR, which bee_build and bee_install set on the command line of make, conflicts with the internal usage of the variable in the julia makefiles. --- julia.be0 | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/julia.be0 b/julia.be0 index 77544e1fa..2b8b98c28 100755 --- a/julia.be0 +++ b/julia.be0 @@ -58,11 +58,16 @@ SRCURL[0]="https://github.com/JuliaLang/julia/releases/download/v${PKGVERSION}/j #} mee_build() { - bee_build MARCH=x86-64 + # + # Can't use bee_build here, because julias build system uses DOCDIR for + # own purpose. + # julias Makefile wants prefix lower case + # + start_cmd make ${BEE_MAKEFLAGS} prefix="${PREFIX}" MARCH=x86-64 } mee_install() { - bee_install MARCH=x86-64 prefix="${PREFIX}" sysconfdir="${SYSCONFDIR}" + start_cmd make ${BEE_MAKEFLAGS} install prefix="${PREFIX}" DESTDIR=${D} MARCH=x86-64 } # by default this may be 'make install DESTDIR="${D}"'