libunwind: Remove after building

When building arm c++ code we do not want this libunwind to be used.
This commit is contained in:
Fredrik Fornwall 2017-08-08 12:18:28 +02:00
parent 98bfb12e9d
commit 5204c69d35
1 changed files with 6 additions and 0 deletions

View File

@ -11,3 +11,9 @@ TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-tests --disable-coredump"
termux_step_post_extract_package() {
NOCONFIGURE=1 ./autogen.sh
}
termux_step_post_massage() {
# Hack to fix problem with building arm c++ code
# which should not use this libunwind:
rm $TERMUX_PREFIX/lib/libunwind*
}