diff options
author | Breno Leitao <breno.leitao@gmail.com> | 2017-04-08 22:43:33 +0000 |
---|---|---|
committer | Breno Leitao <breno.leitao@gmail.com> | 2017-04-08 22:48:30 +0000 |
commit | eaa30e47154f8d89d5fadc3304e2b59a928fd3e1 (patch) | |
tree | d272346bafa3e712c3782ed3086b9581ee20a501 /testing/dspam | |
parent | d3246c8f856e666ecdf5163b77669cdeb382b430 (diff) | |
download | aports-eaa30e47154f8d89d5fadc3304e2b59a928fd3e1.tar.bz2 aports-eaa30e47154f8d89d5fadc3304e2b59a928fd3e1.tar.xz |
testing/dspam: Fix FTBFS on ppc64le
Currently dspam package does not build on ppc64le because it contains
outdate config.guess file. Updating it before building it.
Diffstat (limited to 'testing/dspam')
-rw-r--r-- | testing/dspam/APKBUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testing/dspam/APKBUILD b/testing/dspam/APKBUILD index 4f0ff7c465..3b6f164232 100644 --- a/testing/dspam/APKBUILD +++ b/testing/dspam/APKBUILD @@ -30,6 +30,7 @@ prepare() { msg "Applying $i" patch -p1 -i "$i" || return 1 done + update_config_guess || return 1 #aclocal -I m4 && libtoolize && autoconf && automake } |