aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Porting-from-autotools.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 18:00:24 +0200
commit27abed4a707ba69b019822a0a0e3c045542b4443 (patch)
treeb32990d77af51d03e98c01a3a1af78def756b26f /docs/markdown/Porting-from-autotools.md
parent4bde7f31ae5fa162a514f3d876d38943fcdff406 (diff)
downloadmeson-capitalization.zip
meson-capitalization.tar.gz
meson-capitalization.tar.bz2
Capitalize "Meson" consistently as it is a proper name. [skip ci]capitalization
Diffstat (limited to 'docs/markdown/Porting-from-autotools.md')
-rw-r--r--docs/markdown/Porting-from-autotools.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Porting-from-autotools.md b/docs/markdown/Porting-from-autotools.md
index 05af79a..34e1bbd 100644
--- a/docs/markdown/Porting-from-autotools.md
+++ b/docs/markdown/Porting-from-autotools.md
@@ -158,7 +158,7 @@ option('enable-dep11', type : 'boolean', value : true, description : 'enable DEP
## Makefile.am
-Next step is `Makefile.am`. In meson you don't need to have other
+Next step is `Makefile.am`. In Meson you don't need to have other
file, you still use `meson.build`.
### Sub directories
@@ -204,7 +204,7 @@ EXTRA_DIST = \
config.h
```
-In Meson you don't need have `*CLEANFILES`, because in meson you are
+In Meson you don't need have `*CLEANFILES`, because in Meson you are
building in temporary directory (usually called `build`), you manually
removing it. You also not need to use `EXTRA_DIST`, because you will
make tarballs via `git archive` or something like this.