From d36c5b93ff5f2b05faee1bb69de2694c5b64615f Mon Sep 17 00:00:00 2001 From: SeokYeon Hwang Date: Wed, 5 Aug 2015 16:22:22 +0900 Subject: [PATCH] build: fixed dest dir of emulator binary on DIBS Change-Id: I4a9d55ceee3bf9f15426827bb0f1c59c040cd21d Signed-off-by: SeokYeon Hwang --- tizen/src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 \ -- 2.34.1