plugin-development: basics-boilerplate: Remove unneeded meson.build edit step
authorTyler Compton <xaviosx@gmail.com>
Fri, 9 Jul 2021 23:01:42 +0000 (16:01 -0700)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Tue, 9 Nov 2021 17:46:31 +0000 (17:46 +0000)
Closes https://gitlab.freedesktop.org/gstreamer/gst-docs/-/merge_requests/157/

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1324>

subprojects/gst-docs/markdown/plugin-development/basics/boiler.md

index 706eb1cde9ad085eaa52df8252d2601164cd6c2a..2d50611d84c4bbb5fa6dd2bf9a20ecf5d4352735 100644 (file)
@@ -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**
 >