summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorapple muncy <j.apple.muncy@gmail.com>2017-08-25 09:41:40 -0400
committerSebastian Dröge <sebastian@centricular.com>2017-08-28 19:07:12 +0300
commit8b61265d7ec69ef276a834c73f239fef80a2721f (patch)
treeb5f790791fb8f0f7ed27dd93d1fbf76181e6d069
parent9a1613e288684126d65c597f040152edf018ff6d (diff)
Use correct pkg-config package name for gstreamer-audio-1.0
https://bugzilla.gnome.org/show_bug.cgi?id=786804
-rw-r--r--markdown/tutorials/basic/short-cutting-the-pipeline.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/markdown/tutorials/basic/short-cutting-the-pipeline.md b/markdown/tutorials/basic/short-cutting-the-pipeline.md
index 3779598..b9aa521 100644
--- a/markdown/tutorials/basic/short-cutting-the-pipeline.md
+++ b/markdown/tutorials/basic/short-cutting-the-pipeline.md
@@ -332,7 +332,10 @@ int main(int argc, char *argv[]) {
>
> If you need help to compile this code, refer to the **Building the tutorials** section for your platform: [Linux](installing/on-linux.md#InstallingonLinux-Build), [Mac OS X](installing/on-mac-osx.md#InstallingonMacOSX-Build) or [Windows](installing/on-windows.md#InstallingonWindows-Build), or use this specific command on Linux:
>
-> `` gcc basic-tutorial-8.c -o basic-tutorial-8 `pkg-config --cflags --libs gstreamer-1.0 gst-audio-1.0` ``
+> `` gcc basic-tutorial-8.c -o basic-tutorial-8 `pkg-config --cflags --libs gstreamer-1.0 gstreamer-audio-1.0` ``
+>
+> or
+> `` gcc basic-tutorial-8.c -o basic-tutorial-8 `pkg-config --cflags --libs gstreamer-1.0 gstreamer-audio-1.0` ``
>
>If you need help to run this code, refer to the **Running the tutorials** section for your platform: [Linux](installing/on-linux.md#InstallingonLinux-Run), [Mac OS X](installing/on-mac-osx.md#InstallingonMacOSX-Run) or [Windows](installing/on-windows.md#InstallingonWindows-Run).
>