aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Creating-Linux-binaries.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-01-31 18:00:24 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2021-01-31 19:49:20 +0000
commit474f4813c477c30bed842baa706170e5e902838c (patch)
treeb32990d77af51d03e98c01a3a1af78def756b26f /docs/markdown/Creating-Linux-binaries.md
parent4bde7f31ae5fa162a514f3d876d38943fcdff406 (diff)
downloadmeson-474f4813c477c30bed842baa706170e5e902838c.zip
meson-474f4813c477c30bed842baa706170e5e902838c.tar.gz
meson-474f4813c477c30bed842baa706170e5e902838c.tar.bz2
Capitalize "Meson" consistently as it is a proper name. [skip ci]
Diffstat (limited to 'docs/markdown/Creating-Linux-binaries.md')
-rw-r--r--docs/markdown/Creating-Linux-binaries.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Creating-Linux-binaries.md b/docs/markdown/Creating-Linux-binaries.md
index f5aa6a4..71c96e4 100644
--- a/docs/markdown/Creating-Linux-binaries.md
+++ b/docs/markdown/Creating-Linux-binaries.md
@@ -84,7 +84,7 @@ things to note. First, you must tell GCC to link the C++ standard
library statically. If you don't then your app is guaranteed to break
as different distros have binary-incompatible C++ libraries. The
second thing is that you need to point your install prefix to some
-empty staging area. Here's the meson command to do that:
+empty staging area. Here's the Meson command to do that:
```console
$ LDFLAGS=-static-libstdc++ meson --prefix=/tmp/myapp <other args>