diff mbox series

[3/3] docs: Don't recommend passing 'method' to dependency()

Message ID 20220119171800.491703-4-abologna@redhat.com (mailing list archive)
State New, archived
Headers show
Series meson: Don't pass 'method' to dependency() | expand

Commit Message

Andrea Bolognani Jan. 19, 2022, 5:18 p.m. UTC
Meson will do the right thing by default.

Signed-off-by: Andrea Bolognani <abologna@redhat.com>
---
 docs/devel/build-system.rst | 1 -
 1 file changed, 1 deletion(-)
diff mbox series

Patch

diff --git a/docs/devel/build-system.rst b/docs/devel/build-system.rst
index 431caba7aa..fcdc0cd187 100644
--- a/docs/devel/build-system.rst
+++ b/docs/devel/build-system.rst
@@ -316,7 +316,6 @@  dependency will be used::
   sdl_image = not_found
   if not get_option('sdl_image').auto() or have_system
     sdl_image = dependency('SDL2_image', required: get_option('sdl_image'),
-                           method: 'pkg-config',
                            static: enable_static)
   endif