From: Tyler Compton Date: Fri, 9 Jul 2021 23:01:42 +0000 (-0700) Subject: plugin-development: basics-boilerplate: Remove unneeded meson.build edit step X-Git-Tag: 1.20.0~321 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ebb61c5e24a7ef52b68932f8e6c3ae9708edfd38;p=platform%2Fupstream%2Fgstreamer.git plugin-development: basics-boilerplate: Remove unneeded meson.build edit step Closes https://gitlab.freedesktop.org/gstreamer/gst-docs/-/merge_requests/157/ Part-of: --- 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** >