diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-09-25 14:18:52 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-09-25 14:19:49 +0000 |
commit | e1e33746131a7b1d2256df03ee8ceaa2058f134f (patch) | |
tree | f0f38479cf85bd8278e1ed375d3cfba97280fa33 | |
parent | 17d98092466a62deff02bc83571d3c0d975a70fe (diff) | |
download | aports-e1e33746131a7b1d2256df03ee8ceaa2058f134f.tar.bz2 aports-e1e33746131a7b1d2256df03ee8ceaa2058f134f.tar.xz |
community/erlang: fix build dep and use openjdk8
-rw-r--r-- | community/erlang/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/community/erlang/APKBUILD b/community/erlang/APKBUILD index 6963e8dc74..aa788b9d88 100644 --- a/community/erlang/APKBUILD +++ b/community/erlang/APKBUILD @@ -11,7 +11,8 @@ url="http://www.erlang.org/" license="ASL 2.0" arch="all" depends="$pkgname-kernel $pkgname-stdlib $pkgname-compiler" -makedepends="perl-dev zlib-dev ncurses-dev libressl-dev openjdk7 unixodbc-dev" +makedepends="perl-dev zlib-dev ncurses-dev libressl-dev openjdk8 unixodbc-dev + autoconf" subpackages="$pkgname-dev $pkgname-asn1:asn $pkgname-common-test:common_test @@ -74,7 +75,7 @@ prepare() { build() { cd "$builddir" export CPPFLAGS="-D_BSD_SOURCE $CPPFLAGS" - export PATH="/usr/lib/jvm/java-1.7-openjdk/bin:$PATH" + export PATH="/usr/lib/jvm/java-1.8-openjdk/bin:$PATH" ./otp_build autoconf ./configure --prefix=/usr \ --sysconfdir=/etc \ |