diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2023-05-25 11:56:13 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-05-26 10:17:32 +0200 |
commit | eea2d141179e58222eb655f948a951561134b260 (patch) | |
tree | fd578dba3396d71cc525816ef28a78ac76b4ded6 /tests/vm | |
parent | b1399b0c851f36b4cd0185321cb620bf4e52f30b (diff) | |
download | qemu-eea2d141179e58222eb655f948a951561134b260.zip qemu-eea2d141179e58222eb655f948a951561134b260.tar.gz qemu-eea2d141179e58222eb655f948a951561134b260.tar.bz2 |
Makefile: remove $(TESTS_PYTHON)
It is now the same as $(PYTHON), since the latter always points at pyvenv/bin/python3.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests/vm')
-rw-r--r-- | tests/vm/Makefile.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vm/Makefile.include b/tests/vm/Makefile.include index c2a8ca1..f0f5d32 100644 --- a/tests/vm/Makefile.include +++ b/tests/vm/Makefile.include @@ -5,7 +5,7 @@ ifeq ($(realpath $(SRC_PATH)),$(realpath .)) VM_PYTHON = PYTHONPATH=$(SRC_PATH)/python /usr/bin/env python3 VM_VENV = else -VM_PYTHON = $(TESTS_PYTHON) +VM_PYTHON = $(PYTHON) VM_VENV = check-venv endif |