diff options
author | psykose <alice@ayaya.dev> | 2022-07-28 06:36:39 +0000 |
---|---|---|
committer | psykose <alice@ayaya.dev> | 2022-07-28 08:36:39 +0200 |
commit | bf630b15ce12cd4ec0f3602380270508ee2ac2d0 (patch) | |
tree | 25b36a7c0d1c44a78f6f40f9b9ca016ec90acdce | |
parent | 44e79bc502f95f60aa74105a4b013ba5e4062184 (diff) | |
download | aports-bf630b15ce12cd4ec0f3602380270508ee2ac2d0.zip |
main/jemalloc: fix installation/prefix
otherwise the prefix= in the .pc is /home/buildozer .. /usr
-rw-r--r-- | main/jemalloc/APKBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/main/jemalloc/APKBUILD b/main/jemalloc/APKBUILD index 98317529534..f8795531ac5 100644 --- a/main/jemalloc/APKBUILD +++ b/main/jemalloc/APKBUILD @@ -3,7 +3,7 @@ # Contributor: Duncan Bellamy <dunk@denkimushi.com> pkgname=jemalloc pkgver=5.3.0 -pkgrel=0 +pkgrel=1 pkgdesc="general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support" url="http://jemalloc.net" arch="all" @@ -24,13 +24,13 @@ build() { autoconf ./configure \ --enable-xmalloc \ - --prefix="$pkgdir"/usr \ + --prefix=/usr \ --localstatedir=/var \ --sysconfdir=/etc \ --with-xslroot="$_xslroot" \ --with-lg-page="$_pgs" \ --with-lg-hugepage=21 - make all dist + make all } check() { @@ -38,7 +38,7 @@ check() { } package() { - make install + make DESTDIR="$pkgdir" install } sha512sums=" |