summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2009-07-15 11:19:21 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2009-07-15 11:19:21 +0000
commite6ea198ece9ffcae7a27cf8c331b541a42d16be0 (patch)
treea85461694629c086e60a967ea73001d7e4524df6 /core
parent6840eeefed96bcb0443c552450f54c5cdbb4aaaf (diff)
downloadaports-e6ea198ece9ffcae7a27cf8c331b541a42d16be0.tar.bz2
aports-e6ea198ece9ffcae7a27cf8c331b541a42d16be0.tar.xz
core/zlib: install libs in /lib so they are available before localmount
Diffstat (limited to 'core')
-rw-r--r--core/zlib/APKBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/zlib/APKBUILD b/core/zlib/APKBUILD
index 5a171860..5e012589 100644
--- a/core/zlib/APKBUILD
+++ b/core/zlib/APKBUILD
@@ -1,7 +1,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=zlib
pkgver=1.2.3.3
-pkgrel=4
+pkgrel=5
pkgdesc="A compression/decompression Library"
license=custom:zlib
url="http://www.gzip.org/zlib"
@@ -11,7 +11,7 @@ subpackages="$pkgname-dev $pkgname-doc"
build() {
cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr --shared
+ ./configure --prefix=/usr --libdir=/lib --shared
make || return 1
make install DESTDIR="$pkgdir" || return 1
}