summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStéphane Cerveau <scerveau@collabora.com>2021-09-29 11:23:38 +0200
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2021-09-30 12:24:38 +0000
commitd435b154b836bfdadba13f25270cf920a13ae0b1 (patch)
tree36e65219de381e5486b15e6ebc46d2616786e3ec
parentfeb5a5aae6100e0e64a66fab30efc6b3ff876270 (diff)
downloadgstreamer-d435b154b836bfdadba13f25270cf920a13ae0b1.tar.gz
core: remove outdated mention to gst-build
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/956>
-rw-r--r--README.md2
-rwxr-xr-xgst-env.py4
-rw-r--r--subprojects/gstreamer/plugins/tracers/gstfactories.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 5c8464bbc4..270c570f0e 100644
--- a/README.md
+++ b/README.md
@@ -350,7 +350,7 @@ and place it into `PATH`.
### Meson on Windows
**IMPORTANT**: Do not use the Meson MSI installer since it is experimental and known to not
-work with `gst-build`.
+work with `GStreamer`.
You can use `pip3` to install Meson, same as Ninja above:
diff --git a/gst-env.py b/gst-env.py
index 94dba9b579..6383910a94 100755
--- a/gst-env.py
+++ b/gst-env.py
@@ -471,7 +471,7 @@ if __name__ == "__main__":
help="The meson build directory")
parser.add_argument("--gstbuilddir",
default=None,
- help="The meson gst-build build directory (defaults to builddir)")
+ help="The meson GStreamer build directory (defaults to builddir)")
parser.add_argument("--srcdir",
default=SCRIPTDIR,
help="The top level source directory")
@@ -496,7 +496,7 @@ if __name__ == "__main__":
exit(1)
if options.gstbuilddir and not os.path.exists(options.gstbuilddir):
- print("gst-build is not built in %s\n\nBuild it and try again" %
+ print("GStreamer is not built in %s\n\nBuild it and try again" %
options.gstbuilddir)
exit(1)
elif not options.gstbuilddir:
diff --git a/subprojects/gstreamer/plugins/tracers/gstfactories.c b/subprojects/gstreamer/plugins/tracers/gstfactories.c
index fbb2505e20..54ad917189 100644
--- a/subprojects/gstreamer/plugins/tracers/gstfactories.c
+++ b/subprojects/gstreamer/plugins/tracers/gstfactories.c
@@ -42,7 +42,7 @@
* ```
*
* Based on this information, one can build a minimal, yet sufficient
- * build of GStreamer using gst-build with a configuration like this one:
+ * build of GStreamer with a configuration like this one:
* ```
* meson setup builddir -Dgst-full-elements="audiotestsrc:audiotestsrc;coreelements:fakesink"
* ```