Skip to content

Commit cef6da5

Browse files
committed
docs/system: Use the meson binary from the pyvenv
To avoid problems with the meson installation from the host system, we should always use the meson from our venv instead. Thus use this in the documentation, too. While we're at it, also mention that it has to be run from the build folder (in the igb.rst file; the other two files were already fine). Suggested-by: Niek Linnenbank <[email protected]> Message-ID: <[email protected]> Reviewed-by: Akihiko Odaki <[email protected]> Reviewed-by: Niek Linnenbank <[email protected]> Signed-off-by: Thomas Huth <[email protected]>
1 parent 23686df commit cef6da5

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

docs/system/arm/bananapi_m2u.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,4 @@ provide the following command:
136136
137137
$ cd qemu-build-dir
138138
$ QEMU_TEST_ALLOW_LARGE_STORAGE=1 \
139-
meson test --suite thorough func-arm-arm_bpim2u
139+
pyvenv/bin/meson test --suite thorough func-arm-arm_bpim2u

docs/system/arm/orangepi.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,4 +262,4 @@ provide the following command from the build directory:
262262
.. code-block:: bash
263263
264264
$ QEMU_TEST_ALLOW_LARGE_STORAGE=1 \
265-
meson test --suite thorough func-arm-arm_orangepi
265+
pyvenv/bin/meson test --suite thorough func-arm-arm_orangepi

docs/system/devices/igb.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,12 @@ directory:
5757
meson test qtest-x86_64/qos-test
5858
5959
ethtool can test register accesses, interrupts, etc. It is automated as an
60-
functional test and can be ran with the following command:
60+
functional test and can be run from the build directory with the following
61+
command:
6162

6263
.. code:: shell
6364
64-
meson test --suite thorough func-x86_64-netdev_ethtool
65+
pyvenv/bin/meson test --suite thorough func-x86_64-netdev_ethtool
6566
6667
References
6768
==========

0 commit comments

Comments
 (0)