diff options
author | Timo Teräs <timo.teras@iki.fi> | 2016-04-03 16:45:13 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-04-03 16:46:54 +0000 |
commit | 19a0a39910d8df0bedfb9253e00d5aa90b1de433 (patch) | |
tree | ba407c9fe7edddf2f7d87649045dff946e0cf959 /main | |
parent | 01ef857c8246e5b0bf9eb22afab0611a075cf82a (diff) | |
download | aports-19a0a39910d8df0bedfb9253e00d5aa90b1de433.tar.bz2 aports-19a0a39910d8df0bedfb9253e00d5aa90b1de433.tar.xz |
main/gettext: fix to use system *printf
Diffstat (limited to 'main')
-rw-r--r-- | main/gettext/APKBUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/main/gettext/APKBUILD b/main/gettext/APKBUILD index 728501b3b6..0e75ea1f8a 100644 --- a/main/gettext/APKBUILD +++ b/main/gettext/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Carlo Landmeter <clandmeter@gmail.com> pkgname=gettext pkgver=0.19.7 -pkgrel=2 +pkgrel=3 pkgdesc="GNU locale utilities" url="http://www.gnu.org/software/gettext/gettext.html" arch="all" @@ -19,6 +19,9 @@ _builddir="$srcdir"/$pkgname-$pkgver build() { cd "$_builddir" + # force using system posix complaint printf + # the test is broken and fails with ash + gt_cv_func_printf_posix=yes \ ./configure \ --build=$CBUILD \ --host=$CHOST \ |