[Title] fix qemu-img path
authormunkyu.im <munkyu.im@samsung.com>
Sat, 3 Dec 2011 07:15:13 +0000 (16:15 +0900)
committermunkyu.im <munkyu.im@samsung.com>
Sat, 3 Dec 2011 07:15:13 +0000 (16:15 +0900)
[Type] Bufgix
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

tizen/src/vtm.c

index 97a8a0e..1157618 100644 (file)
@@ -635,8 +635,7 @@ void make_default_image(void)
                INFO( "emulimg-default.x86 not exists. is making now.\n");
        // create emulator image
 #ifdef _WIN32
-               cmd = g_strdup_printf("%s/bin/qemu-img create -b %s/emulimg.x86 -f qcow2 x86/VMs/default/emulimg-default.x86", 
-                               get_bin_path(), get_abs_path());
+               cmd = g_strdup_printf("qemu-img create -b %s/emulimg.x86 -f qcow2 x86/VMs/default/emulimg-default.x86", get_abs_path());
 #else
                cmd = g_strdup_printf("qemu-img create -b %s/emulimg.x86 -f qcow2 x86/VMs/default/emulimg-default.x86", get_abs_path());
 #endif