diff options
author | William Pitcock <nenolod@dereferenced.org> | 2017-08-10 22:53:13 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2017-08-10 22:53:40 +0000 |
commit | 0ab24492aeafcf28bbe1be0ebac025d055e24c50 (patch) | |
tree | c40b97048fdb6a66e2bf73ccf13d69a402ac6a28 | |
parent | 94f911eca8c0e8a1e9214a8c17eef15b43d7c883 (diff) | |
download | aports-0ab24492aeafcf28bbe1be0ebac025d055e24c50.tar.bz2 aports-0ab24492aeafcf28bbe1be0ebac025d055e24c50.tar.xz |
main/libtool: disable -dlpreopen nonsense
-rw-r--r-- | main/libtool/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/libtool/APKBUILD b/main/libtool/APKBUILD index de86f2aeb7..ee45ea63cb 100644 --- a/main/libtool/APKBUILD +++ b/main/libtool/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=libtool pkgver=2.4.6 -pkgrel=1 +pkgrel=2 pkgdesc="A generic library support script" arch="all" license='GPL' @@ -24,6 +24,7 @@ build() { --prefix=/usr \ --disable-static \ || return 1 + echo '#undef HAVE_LIBDLLOADER' >> config.h make } |