aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Turner <digit@google.com>2015-07-17 16:57:34 +0000
committerandroid-build-merger <android-build-merger@google.com>2015-07-17 16:57:34 +0000
commit599aa6763471e2816d49b115ad7d60f918e2c5a2 (patch)
treec370cbbdefa46929767ff525d2ada3ad578b55d0
parentd5cbc3a031cfe33f0f2505c6efabdb4ccd5d0e21 (diff)
parentccc67f3f00dd92210b64c610abbb93bb557ac526 (diff)
downloadqemu-599aa6763471e2816d49b115ad7d60f918e2c5a2.tar.gz
Merge "Copy windows 32-bit e2fsprogs executables into /bin64" into studio-1.4-dev
automerge: ccc67f3 * commit 'ccc67f3f00dd92210b64c610abbb93bb557ac526': Copy windows 32-bit e2fsprogs executables into $OUT_DIR/bin64
-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;;