diff options
author | Fernando Seiti Furusato <ferseiti@linux.vnet.ibm.com> | 2017-01-27 10:52:12 -0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-02-07 10:35:59 +0200 |
commit | 36fb281a34220558595c06c2e99093e6780a716e (patch) | |
tree | c55dd8c2ab3cc12f86cd83f5716dcce87f158a15 /main/json-c | |
parent | e67aea1521e6de3d9951f7428e67e074e03e66fc (diff) | |
download | aports-36fb281a34220558595c06c2e99093e6780a716e.tar.bz2 aports-36fb281a34220558595c06c2e99093e6780a716e.tar.xz |
main/json-c: replaced chain of autotools commands
This replaces the various autotools commands by autoreconf which
additionally updates config.sub and config.guess, that were kept and
led json-c to fail on ppc64le due to this arch being relatively new.
Signed-off-by: Fernando Seiti Furusato <ferseiti@linux.vnet.ibm.com>
Diffstat (limited to 'main/json-c')
-rw-r--r-- | main/json-c/APKBUILD | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/main/json-c/APKBUILD b/main/json-c/APKBUILD index 9484baf6de..6fca893ca5 100644 --- a/main/json-c/APKBUILD +++ b/main/json-c/APKBUILD @@ -23,8 +23,7 @@ prepare() { *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; esac done - libtoolize --force && aclocal && autoconf && autoheader \ - && automake --add-missing + autoreconf -f -v -i } build() { |