diff options
author | tmpfile <tmpfile@users.noreply.github.com> | 2017-09-06 10:09:12 -0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-09-06 13:24:54 +0000 |
commit | e56dae0daa03026f8f07933b27f63c793e2979d7 (patch) | |
tree | 4957203ac365bfb28f3f311c2885146f1db8a03e | |
parent | 67f99c6ac018ab14fa2820e9e0cc0d2fc3de446f (diff) | |
download | aports-e56dae0daa03026f8f07933b27f63c793e2979d7.tar.bz2 aports-e56dae0daa03026f8f07933b27f63c793e2979d7.tar.xz |
main/bridge-utils: run autoconf in prepare()
-rw-r--r-- | main/bridge-utils/APKBUILD | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/main/bridge-utils/APKBUILD b/main/bridge-utils/APKBUILD index 6a10d79424..616733621f 100644 --- a/main/bridge-utils/APKBUILD +++ b/main/bridge-utils/APKBUILD @@ -10,11 +10,15 @@ subpackages="$pkgname-doc" depends="" makedepends="autoconf linux-headers" source="https://www.kernel.org/pub/linux/utils/net/$pkgname/$pkgname-$pkgver.tar.xz" - builddir="$srcdir"/$pkgname-$pkgver + +prepare() { + default_prepare + autoconf +} + build() { cd "$builddir" - autoconf ./configure \ --build=$CBUILD \ --host=$CHOST \ |