From ebb61c5e24a7ef52b68932f8e6c3ae9708edfd38 Mon Sep 17 00:00:00 2001 From: Tyler Compton Date: Fri, 9 Jul 2021 16:01:42 -0700 Subject: [PATCH] plugin-development: basics-boilerplate: Remove unneeded meson.build edit step Closes https://gitlab.freedesktop.org/gstreamer/gst-docs/-/merge_requests/157/ Part-of: --- .../gst-docs/markdown/plugin-development/basics/boiler.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/subprojects/gst-docs/markdown/plugin-development/basics/boiler.md b/subprojects/gst-docs/markdown/plugin-development/basics/boiler.md index 706eb1cde9..2d50611d84 100644 --- a/subprojects/gst-docs/markdown/plugin-development/basics/boiler.md +++ b/subprojects/gst-docs/markdown/plugin-development/basics/boiler.md @@ -96,10 +96,9 @@ The last command creates two files: `gstmyfilter.c` and `gstmyfilter.h`. > It is recommended that you create a copy of the `gst-plugin` directory > before continuing. -Now one needs to adjust the `meson.build` to use the new filenames and run -`meson build` from the parent directory to bootstrap the build -environment. After that, the project can be built and installed using the well -known `ninja -C build` commands. +Now one needs to run `meson build` from the parent directory to bootstrap the +build environment. After that, the project can be built and installed using the +well known `ninja -C build` commands. > **Note** >