2018-10-26 15:19:03 +02:00
|
|
|
diff -uNr qemu-3.0.0/migration/exec.c qemu-3.0.0.mod/migration/exec.c
|
|
|
|
--- qemu-3.0.0/migration/exec.c 2018-08-14 22:10:34.000000000 +0300
|
2018-10-26 16:21:47 +02:00
|
|
|
+++ qemu-3.0.0.mod/migration/exec.c 2018-10-26 16:49:45.283598536 +0300
|
2018-10-26 15:19:03 +02:00
|
|
|
@@ -28,7 +28,7 @@
|
2018-09-17 13:27:14 +02:00
|
|
|
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,
|
2018-10-26 15:19:03 +02:00
|
|
|
@@ -55,7 +55,7 @@
|
2018-09-17 13:27:14 +02:00
|
|
|
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,
|