diff options
author | Timo Teräs <timo.teras@iki.fi> | 2013-09-27 14:19:28 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2013-09-27 14:22:26 +0000 |
commit | 1751d6595597f1d9101cac04e54f20d95790f4f4 (patch) | |
tree | e895c3aa71985691256eca03cf4f7cdfeb0d966b /main/wget | |
parent | ee152f9e0dce8017d033e01e018f1482d27e7e1d (diff) | |
download | aports-1751d6595597f1d9101cac04e54f20d95790f4f4.tar.bz2 aports-1751d6595597f1d9101cac04e54f20d95790f4f4.tar.xz |
main/[various]: fix build against musl (add update_config_sub)
Diffstat (limited to 'main/wget')
-rw-r--r-- | main/wget/APKBUILD | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/main/wget/APKBUILD b/main/wget/APKBUILD index 204536e705..1c239821e7 100644 --- a/main/wget/APKBUILD +++ b/main/wget/APKBUILD @@ -14,6 +14,11 @@ install="wget.post-deinstall" source="ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz" _builddir="$srcdir"/$pkgname-$pkgver +prepare() { + cd "$_builddir" + update_config_sub || return 1 +} + build() { cd "$_builddir" ./configure \ @@ -32,6 +37,10 @@ build() { package() { cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 + + rm -rf "$pkgdir"/usr/lib/charset.alias + rmdir -p "$pkgdir"/usr/lib 2>/dev/null + return 0 } md5sums="12edc291dba8127f2e9696e69f36299e wget-1.14.tar.gz" |