plugin-development: basics-boilerplate: Remove unneeded meson.build edit step

Closes https://gitlab.freedesktop.org/gstreamer/gst-docs/-/merge_requests/157/

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1324>
This commit is contained in:
Tyler Compton 2021-07-09 16:01:42 -07:00 committed by GStreamer Marge Bot
parent c66b10b5cb
commit ebb61c5e24

View 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**
>