aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Dagarin <SloCompTech@users.noreply.github.com>2018-02-08 16:11:36 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2018-02-08 23:50:19 +0200
commita9654c8533c05a4e25689d78238ee5114aa7f4f3 (patch)
treecfc91e470ead70753ae3c3854f051503e4f560dc
parentaaee113ee28f4206121d511e65a2ba668858478a (diff)
downloadmeson-a9654c8533c05a4e25689d78238ee5114aa7f4f3.zip
meson-a9654c8533c05a4e25689d78238ee5114aa7f4f3.tar.gz
meson-a9654c8533c05a4e25689d78238ee5114aa7f4f3.tar.bz2
Fixed typo
Fixed typo in section Other install commands, typo was in extension of data file
-rw-r--r--docs/markdown/Installing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Installing.md b/docs/markdown/Installing.md
index 2663ff4..4670544 100644
--- a/docs/markdown/Installing.md
+++ b/docs/markdown/Installing.md
@@ -26,7 +26,7 @@ Other install commands are the following.
```meson
install_headers('header.h', subdir : 'projname') # -> include/projname/header.h
install_man('foo.1') # -> share/man/man1/foo.1.gz
-install_data('datafile.cat', install_dir : join_paths(get_option('datadir'), 'progname')) # -> share/progname/datafile.dat
+install_data('datafile.dat', install_dir : join_paths(get_option('datadir'), 'progname')) # -> share/progname/datafile.dat
```
Sometimes you want to copy an entire subtree directly. For this use case there is the `install_subdir` command, which can be used like this.