aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Reference-manual.md
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2018-10-26 09:35:54 -0700
committerJussi Pakkanen <jpakkane@gmail.com>2018-10-27 16:07:14 +0300
commit1e054ad2b99957140450998941f22f3c50eea936 (patch)
tree0cf9896a0b12d3d3898b93ff0614854fc325cbeb /docs/markdown/Reference-manual.md
parent7458e762a3cb44e3cae6f96e2ee811535c576fef (diff)
downloadmeson-1e054ad2b99957140450998941f22f3c50eea936.zip
meson-1e054ad2b99957140450998941f22f3c50eea936.tar.gz
meson-1e054ad2b99957140450998941f22f3c50eea936.tar.bz2
docs: Fix hotdoc warnings [skip ci]
Hotdoc really wants internal links to point to the .md files instead of the generated names. Which makes sense, as we're currently relying on the fact that meson only generated .html pages.
Diffstat (limited to 'docs/markdown/Reference-manual.md')
-rw-r--r--docs/markdown/Reference-manual.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md
index 7a63d32..59d4173 100644
--- a/docs/markdown/Reference-manual.md
+++ b/docs/markdown/Reference-manual.md
@@ -1555,7 +1555,7 @@ the following methods.
compilation to reduce build time) and `false` otherwise.
- `override_find_program(progname, program)` [*(Added
- 0.46.0)*](Release-notes-for-0-46-0.html#can-override-find_program)
+ 0.46.0)*](Release-notes-for-0.46.0.md#can-override-find_program)
specifies that whenever `find_program` is used to find a program
named `progname`, Meson should not not look it up on the system but
instead return `program`, which may either be the result of
@@ -1589,7 +1589,7 @@ methods:
etc.
- `system()` returns the operating system name. [This
- table](Reference-tables.html#operating-system-names) Lists all of
+ table](Reference-tables.md#operating-system-names) Lists all of
the currently known Operating System names, these are guaranteed to
continue working.
@@ -1691,7 +1691,7 @@ the following methods:
the compiler would. E.g. `"a" "b"` will become `"ab"`.
- `get_id()` returns a string identifying the compiler. For example,
- `gcc`, `msvc`, [and more](Reference-tables.html#compiler-ids).
+ `gcc`, `msvc`, [and more](Reference-tables.md#compiler-ids).
- `get_supported_arguments(list_of_string)` *(added 0.43.0)* returns
an array containing only the arguments supported by the compiler,
@@ -1790,7 +1790,7 @@ the following methods:
compiler supports the GNU style (`__attribute__(...)`) `name`. This is
preferable to manual compile checks as it may be optimized for compilers that
do not support such attributes.
- [This table](Reference-tables.html#gcc-attribute-support) Lists all of the
+ [This table](Reference-tables.md#gcc-attribute-support) Lists all of the
supported attributes.
- `get_supported_function_attributes(list_of_names)` *(added in 0.48.0)