diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2023-01-05 09:06:21 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2023-01-05 16:42:44 +0200 |
commit | c15ff6b59de877ab8ee19b09e9315e5eaffdb818 (patch) | |
tree | db95cd73585ccd4565b7e722b17fcaea606c5114 | |
parent | 96cd064214aa4f190a06a9aea59b919722e98ccf (diff) |
README: Replace deprecated 'meson' with 'meson setup'
Meson has deprecated implicit usage of the setup command, and this now
generates a warning:
WARNING: Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated.
Update the build instructions to use 'meson setup' explicitly.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rw-r--r-- | README.rst | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ To fetch the sources, build and install: git clone https://git.libcamera.org/libcamera/libcamera.git cd libcamera - meson build + meson setup build ninja -C build install Dependencies |