diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-01-28 13:59:51 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-01-28 13:59:51 +0000 |
commit | 3cc9204922cd885c9dc712f515af115d4cdc52b9 (patch) | |
tree | 767ef21255c99f3cb384a246510b48043508154f /core | |
parent | ed576a3a9c5606c9d347f897d6cef41e5be3b634 (diff) | |
download | aports-3cc9204922cd885c9dc712f515af115d4cdc52b9.tar.bz2 aports-3cc9204922cd885c9dc712f515af115d4cdc52b9.tar.xz |
core/zlib: rebuild so its not linked to libgcc
This package was one of the first packages built. It was linked to libgcc.
While here, Fix APKBUILD to use DESTDIR
Diffstat (limited to 'core')
-rw-r--r-- | core/zlib/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/zlib/APKBUILD b/core/zlib/APKBUILD index 5983c043..72738d40 100644 --- a/core/zlib/APKBUILD +++ b/core/zlib/APKBUILD @@ -1,6 +1,6 @@ pkgname=zlib pkgver=1.2.3.3 -pkgrel=2 +pkgrel=3 pkgdesc="A compression/decompression Library" license=custom:zlib url="http://www.gzip.org/zlib" @@ -12,7 +12,7 @@ build() { cd "$srcdir/$pkgname-$pkgver" ./configure --prefix=/usr --shared make || return 1 - make install prefix=${pkgdir}/usr || return 1 + make install DESTDIR="$pkgdir" || return 1 } md5sums="c444cf020e5f0e3323b11f5a2d8af8d3 zlib-1.2.3.3.tar.gz" |