22 lines
951 B
Diff
22 lines
951 B
Diff
diff -uNr qemu-2.12.1/migration/exec.c qemu-2.12.1.mod/migration/exec.c
|
|
--- qemu-2.12.1/migration/exec.c 2018-08-03 00:48:53.000000000 +0300
|
|
+++ qemu-2.12.1.mod/migration/exec.c 2018-09-17 16:27:47.010729227 +0300
|
|
@@ -27,7 +27,7 @@
|
|
void exec_start_outgoing_migration(MigrationState *s, const char *command, Error **errp)
|
|
{
|
|
QIOChannel *ioc;
|
|
- const char *argv[] = { "/bin/sh", "-c", command, NULL };
|
|
+ const char *argv[] = { "@TERMUX_PREFIX@/bin/sh", "-c", command, NULL };
|
|
|
|
trace_migration_exec_outgoing(command);
|
|
ioc = QIO_CHANNEL(qio_channel_command_new_spawn(argv,
|
|
@@ -54,7 +54,7 @@
|
|
void exec_start_incoming_migration(const char *command, Error **errp)
|
|
{
|
|
QIOChannel *ioc;
|
|
- const char *argv[] = { "/bin/sh", "-c", command, NULL };
|
|
+ const char *argv[] = { "@TERMUX_PREFIX@/bin/sh", "-c", command, NULL };
|
|
|
|
trace_migration_exec_incoming(command);
|
|
ioc = QIO_CHANNEL(qio_channel_command_new_spawn(argv,
|