Don't suggest running cargo cinstall after cargo cbuild

That will build everything twice as `cargo cbuild` builds with the dev
profile by default and `cargo cinstall` uses the release profile.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2442>
This commit is contained in:
Sebastian Dröge 2025-08-08 16:48:51 +03:00
parent a8be57a742
commit 860b8fc241

View file

@ -172,7 +172,6 @@ Replace `x86_64-unknown-linux-gnu` with your system's Rust target triple (`rustc
The plugin can also be installed system-wide:
```
$ cargo cbuild -p gst-plugin-cdg --prefix=/usr
$ cargo cinstall -p gst-plugin-cdg --prefix=/usr
```