diff options
author | Timo Teräs <timo.teras@iki.fi> | 2013-09-27 18:21:50 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2013-09-27 19:14:29 +0000 |
commit | bd8f1f4778cbce936d1a9cc782b6cdf172081456 (patch) | |
tree | 6839eae5f385e20776b9ab1942e0694b5fdbafd0 /main/file | |
parent | 1a27add685ebec1949b730d3fbb00c4c7b722a0f (diff) | |
download | aports-bd8f1f4778cbce936d1a9cc782b6cdf172081456.tar.bz2 aports-bd8f1f4778cbce936d1a9cc782b6cdf172081456.tar.xz |
main/[various]: update config.sub (fixes musl build)
Diffstat (limited to 'main/file')
-rw-r--r-- | main/file/APKBUILD | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/main/file/APKBUILD b/main/file/APKBUILD index 27d4c1367..92cd07968 100644 --- a/main/file/APKBUILD +++ b/main/file/APKBUILD @@ -10,8 +10,15 @@ depends= source="ftp://ftp.astron.com/pub/file/file-$pkgver.tar.gz" subpackages="$pkgname-dev $pkgname-doc" +_builddir="$srcdir/$pkgname-$pkgver" + +prepare() { + cd "$_builddir" + update_config_sub || return 1 +} + build() { - cd "$srcdir"/$pkgname-$pkgver + cd "$_builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ |