Skip to content

Commit

Permalink
julia: Do not use bee_build and bee_install
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
donald committed Jun 30, 2017
1 parent 14b2b06 commit 0fbeae7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions julia.be0
Original file line number Diff line number Diff line change
Expand Up @@ -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}"'

Expand Down

0 comments on commit 0fbeae7

Please sign in to comment.