fix(main/hunspell): fix undefined symbols for arm

Previous auto-update failed for arm with:

```
ERROR: lib/libhunspell-1.7.so contains undefined symbols:
    35: 00000000     0 NOTYPE  GLOBAL DEFAULT   UND __aeabi_idiv
   123: 00000000     0 NOTYPE  GLOBAL DEFAULT   UND __aeabi_uidivmod
```

and 1.7.1 has since been absent from repo.

Issue is reported in android-ndk repo here: android/ndk#1614
This commit is contained in:
Henrik Grimler 2022-08-24 13:26:01 +02:00
parent 77334d69a6
commit 562462e229
No known key found for this signature in database
GPG Key ID: B0076E490B71616B
1 changed files with 2 additions and 0 deletions

View File

@ -14,4 +14,6 @@ TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
autoreconf -vfi
LDFLAGS+=" $($CC -print-libgcc-file-name)"
}