mirror of
https://github.com/qemu/qemu.git
synced 2026-04-22 22:22:58 +00:00
Now that qmp has to be installed and isn't local, we can no longer offer a simple forwarder for these scripts (nor path hacks) and hope that it works. Encourage users to use the 'run' script to use these scripts instead. Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-ID: <20260218213416.674483-18-jsnow@redhat.com> Signed-off-by: John Snow <jsnow@redhat.com>
11 lines
191 B
Python
Executable File
11 lines
191 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
print(
|
|
"This script has moved; after running configure,"
|
|
" please use '$builddir/run qmp-shell [...]' instead.",
|
|
file=sys.stderr
|
|
)
|
|
sys.exit(1)
|