diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2019-12-08 11:56:05 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-12-10 15:20:11 +0100 |
commit | ba6e8eaaea745426b3b719fb0d980abfc155e5c1 (patch) | |
tree | 926da1c8b4e8ab7ccab7be129395322ffa36b2c4 /main | |
parent | 4d5de533e7b4e69b857675e8d1f95eefdaeaa9cb (diff) | |
download | aports-ba6e8eaaea745426b3b719fb0d980abfc155e5c1.tar.bz2 aports-ba6e8eaaea745426b3b719fb0d980abfc155e5c1.tar.xz |
main/ctags: enable iconv but remove failing encoding tests
Diffstat (limited to 'main')
-rw-r--r-- | main/ctags/APKBUILD | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/main/ctags/APKBUILD b/main/ctags/APKBUILD index 2ac7262ad7..850c2db15e 100644 --- a/main/ctags/APKBUILD +++ b/main/ctags/APKBUILD @@ -23,6 +23,11 @@ prepare() { default_prepare cd "$builddir" ./autogen.sh + + # Fail, likely due to compatibility issues with musl's iconv. + # Alternative solution: Build ctags with --disable-iconv. + rm -r Tmain/input-encoding-option.d \ + Tmain/output-encoding-option.d } build() { @@ -33,8 +38,7 @@ build() { --sysconfdir=/etc \ --mandir=/usr/share/man \ --localstatedir=/var \ - --disable-external-sort \ - --disable-iconv # TODO: not entirely compatible with musl's iconv + --disable-external-sort make } |