mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
meson: Adjust ninja usage restriction info for devenv
The documentation within meson highlights, that `ninja` can be used
without problems for any case except `ninja reconfigure`. The warning
however describes to the user, that `ninja` shouldn't be used at all.
Fix the warning.
Fixes: 01eb252f67
Don't allow people to run meson inside the uninstalled env
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1743>
This commit is contained in:
parent
7063aa1471
commit
d97e480dfe
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ assert('GST_ENV' not in os.environ)
|
||||||
'''
|
'''
|
||||||
cmdres = run_command(python3, '-c', ensure_not_devenv, check: false)
|
cmdres = run_command(python3, '-c', ensure_not_devenv, check: false)
|
||||||
if cmdres.returncode() != 0
|
if cmdres.returncode() != 0
|
||||||
error('Do not run `ninja` or `meson` for gst-build inside the development environment, you will run into problems')
|
error('Do not run `ninja reconfigure` or `meson` for gst-build inside the development environment, you will run into problems')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Install gst-indent pre-commit hook
|
# Install gst-indent pre-commit hook
|
||||||
|
|
Loading…
Reference in a new issue