diff options
author | Luis Menina <luis.menina@external.softbankrobotics.com> | 2017-10-23 11:23:58 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-10-23 18:43:04 +0200 |
commit | 36eb7bf0aaec8428299927b1131341d903df2670 (patch) | |
tree | 9133a224ad55c554b515464f236ca6771e8a01b5 /docs/markdown/Installing.md | |
parent | be36b0554484f3c015195ecd4199060cf71fd0b1 (diff) | |
download | meson-36eb7bf0aaec8428299927b1131341d903df2670.zip meson-36eb7bf0aaec8428299927b1131341d903df2670.tar.gz meson-36eb7bf0aaec8428299927b1131341d903df2670.tar.bz2 |
docs: Markdown headers don't need trailing hash signs
This is a cosmetic change because github seems to interpret those
correctly. Nonetheless, it adds unnecessary noise and makes people
modifying the pages think it might be needed.
See syntax guide at https://guides.github.com/features/mastering-markdown/
Diffstat (limited to 'docs/markdown/Installing.md')
-rw-r--r-- | docs/markdown/Installing.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Installing.md b/docs/markdown/Installing.md index 3454d49..2663ff4 100644 --- a/docs/markdown/Installing.md +++ b/docs/markdown/Installing.md @@ -44,7 +44,7 @@ giving an absolute install path. install_data(sources : 'foo.dat', install_dir : '/etc') # -> /etc/foo.dat ``` -## Custom install behavior ## +## Custom install behavior Sometimes you need to do more than just install basic targets. Meson makes this easy by allowing you to specify a custom script to execute at install time. As an example, here is a script that generates an empty file in a custom directory. @@ -65,7 +65,7 @@ meson.add_install_script('myscript.sh') The argument is the name of the script file relative to the current subdirectory. -## DESTDIR support ## +## DESTDIR support Sometimes you need to install to a different directory than the install prefix. This is most common when building rpm or deb packages. This is done with the `DESTDIR` environment variable and it is used just like with other build systems: |