aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xandroid-rebuild.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/android-rebuild.sh b/android-rebuild.sh
index 8a3b36820d..2fc39219c7 100755
--- a/android-rebuild.sh
+++ b/android-rebuild.sh
@@ -271,7 +271,13 @@ if true; then
# be replaced by a panic/fi in a future patch.
echo "Copying e2fsprogs binaries."
for E2FS_ARCH in x86 x86_64; do
- E2FS_SRCDIR=$E2FSPROGS_DIR/$TARGET_OS-$E2FS_ARCH
+ # NOTE: in windows only 32-bit binaries are available, so we'll copy the
+ # 32-bit executables to the bin64/ directory to cover all our bases
+ case $TARGET_OS in
+ windows) E2FS_SRCDIR=$E2FSPROGS_DIR/$TARGET_OS-x86;;
+ *) E2FS_SRCDIR=$E2FSPROGS_DIR/$TARGET_OS-$E2FS_ARCH;;
+ esac
+
case $E2FS_ARCH in
x86) E2FS_DSTDIR=$OUT_DIR/bin;;
x86_64) E2FS_DSTDIR=$OUT_DIR/bin64;;