From: SeokYeon Hwang Date: Wed, 5 Aug 2015 07:22:22 +0000 (+0900) Subject: build: fixed dest dir of emulator binary on DIBS X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.2~280 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d36c5b93ff5f2b05faee1bb69de2694c5b64615f;p=sdk%2Femulator%2Fqemu.git build: fixed dest dir of emulator binary on DIBS Change-Id: I4a9d55ceee3bf9f15426827bb0f1c59c040cd21d Signed-off-by: SeokYeon Hwang --- diff --git a/tizen/src/Makefile b/tizen/src/Makefile index a43f101d1d..2e4d4f42a9 100755 --- a/tizen/src/Makefile +++ b/tizen/src/Makefile @@ -291,7 +291,7 @@ install_dibs: all_dibs @for target in $(TARGET_DIRS); do \ arch=$$(echo $$target | cut -f1 -d"-") ;\ src_bin="../../$${arch}-softmmu/qemu-system-$${arch}$(EXESUF)" ;\ - dest_bin="$(EMUL_DIR)/bin/emulator-$${arch}$(EXESUF)" ;\ + dest_bin="$(DIBS_X86_DIR)/bin/emulator-$${arch}$(EXESUF)" ;\ case $${arch} in \ x86_64) \ echo "Copying $${src_bin} to $${dest_bin}" ;\ @@ -407,7 +407,7 @@ ifdef CONFIG_DARWIN for target in $(TARGET_DIRS); do \ case "$$target" in \ x86_64-softmmu) \ - BIN_ARR=( emulator-x86 ); \ + BIN_ARR=( emulator-x86_64 ); \ for bin in $${BIN_ARR[@]}; do \ LIB_ARR=( $$(otool -L $(DIBS_X86_DIR)/bin/$$bin | awk '/\opt\/local\/lib/ { split($$1, lib, "/"); print lib[5]}') ); \ for lib in $${LIB_ARR[@]}; do \