diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2016-12-03 15:10:39 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-12-03 15:10:39 +0000 |
commit | b6b2655272894633f0ef5a97a140d83d42841401 (patch) | |
tree | 1816849d3c7c0e5938061215c77568d7531b4295 /community | |
parent | 657d655feebe3a392ba67e37d99b8bc973b92b30 (diff) | |
download | aports-b6b2655272894633f0ef5a97a140d83d42841401.tar.bz2 aports-b6b2655272894633f0ef5a97a140d83d42841401.tar.xz |
community/ocaml: actually remove -fno-pie and enable on x86
Diffstat (limited to 'community')
-rw-r--r-- | community/ocaml/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/community/ocaml/APKBUILD b/community/ocaml/APKBUILD index 0878e2135d..1f8ddf4f83 100644 --- a/community/ocaml/APKBUILD +++ b/community/ocaml/APKBUILD @@ -2,10 +2,10 @@ # Maintainer: Borys Zhukov <mp5@mp5.im> pkgname=ocaml pkgver=4.04.0 -pkgrel=0 +pkgrel=1 pkgdesc="Main implementation of the Caml programming language" url="http://caml.inria.fr" -arch="all !x86" +arch="all" license="LGPLv2" makedepends="ncurses-dev zlib-dev gdbm-dev" install="" @@ -41,7 +41,7 @@ build() { esac done - LDFLAGS="$LDFLAGS -fno-pie" ./configure -cc "${CC:-gcc}" \ + ./configure -cc "${CC:-gcc}" \ --bindir /usr/bin \ --libdir /usr/lib/ocaml \ --mandir /usr/share/man \ |