diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2021-01-31 13:24:30 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-01-31 15:11:30 +0000 |
commit | 4bde7f31ae5fa162a514f3d876d38943fcdff406 (patch) | |
tree | 5a56718f60c61cf54caa585cf9df74ccf160701b /docs/markdown/snippets/external_project.md | |
parent | 6c6b5d77d696c160a8f65719058dba2faf783b3e (diff) | |
download | meson-4bde7f31ae5fa162a514f3d876d38943fcdff406.zip meson-4bde7f31ae5fa162a514f3d876d38943fcdff406.tar.gz meson-4bde7f31ae5fa162a514f3d876d38943fcdff406.tar.bz2 |
copy editing for 0.57 release notes [skip ci]
Diffstat (limited to 'docs/markdown/snippets/external_project.md')
-rw-r--r-- | docs/markdown/snippets/external_project.md | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/markdown/snippets/external_project.md b/docs/markdown/snippets/external_project.md index b48dc35..1608d49 100644 --- a/docs/markdown/snippets/external_project.md +++ b/docs/markdown/snippets/external_project.md @@ -4,8 +4,10 @@ in `configure_options`: `'--prefix=@PREFIX@'`, `'--libdir=@PREFIX@/@LIBDIR@'`, and `'--includedir=@PREFIX@/@INCLUDEDIR@'`. It was previously considered a fatal error to not specify them. -- When `verbose` keyword argument is not specified, or is false, command outputs + +- When the `verbose` keyword argument is not specified, or is false, command outputs are written on file in `<builddir>/meson-logs/`. -- `LD` environment variable is not passed any more when running the configure - script. It caused issues because Meson uses CC as linker wrapper but autotools - expects to real linker (e.g. `/usr/bin/ld`). + +- The `LD` environment variable is not passed any more when running the configure + script. It caused issues because Meson sets `LD` to the `CC` linker wrapper but + autotools expects it to be a real linker (e.g. `/usr/bin/ld`). |