aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2016-01-08 16:10:52 -0800
committerDan Albert <danalbert@google.com>2016-01-08 16:45:18 -0800
commit83a878732dcf5a8cf9aa9d473bd4f7c2aea57214 (patch)
treedb255572d8707d4cfd83b8f21d169479307b3d42
parent4395f32efe1928e5a0c1857c61e5a0138707992d (diff)
downloadndk-83a878732dcf5a8cf9aa9d473bd4f7c2aea57214.tar.gz
Fix packaging of thumb libs.
Change-Id: Id0ad3062e85ee7ec956f83957d60359603eeeee2
-rwxr-xr-xsources/cxx-stl/gnu-libstdc++/build-gnu-libstdc++.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/cxx-stl/gnu-libstdc++/build-gnu-libstdc++.sh b/sources/cxx-stl/gnu-libstdc++/build-gnu-libstdc++.sh
index d354afc5e..793d5091c 100755
--- a/sources/cxx-stl/gnu-libstdc++/build-gnu-libstdc++.sh
+++ b/sources/cxx-stl/gnu-libstdc++/build-gnu-libstdc++.sh
@@ -458,7 +458,7 @@ if [ -n "$PACKAGE_DIR" ] ; then
for LIB in include/bits $MULTILIB libsupc++.a libgnustl_static.a libgnustl_shared.so; do
FILES="$FILES $GNUSTL_DIR/libs/$ABI/$LIB"
THUMB_FILE="$GNUSTL_DIR/libs/$ABI/thumb/$LIB"
- if [ -f "$NDK_DIR/$THUMB_FILE" ] ; then
+ if [ -f "$NDK_DIR/sources/cxx-stl/$THUMB_FILE" ]; then
FILES="$FILES $THUMB_FILE"
fi
done