From 860b8fc241ea705a32c7fef554ef52b8b35029d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 8 Aug 2025 16:48:51 +0300 Subject: [PATCH] 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: --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 9b1d14b38..6f8d02cac 100644 --- a/README.md +++ b/README.md @@ -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 ```