diff options
author | Chet Gurevitch <chetgurevitch@protonmail.com> | 2017-08-13 18:53:48 -0700 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-09-04 16:36:12 +0530 |
commit | 1c8abfc6188041112b94dfd66865c5167c7e794d (patch) | |
tree | c1754476d3136cd5b430eeda4fa082fc5c572aa0 | |
parent | ad1d260cb21d9f1fcc84b907bc450abcf0e4d3ad (diff) | |
download | meson-1c8abfc6188041112b94dfd66865c5167c7e794d.zip meson-1c8abfc6188041112b94dfd66865c5167c7e794d.tar.gz meson-1c8abfc6188041112b94dfd66865c5167c7e794d.tar.bz2 |
Tell users about ninja rebuild and meson configure
-rw-r--r-- | mesonbuild/mesonmain.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mesonbuild/mesonmain.py b/mesonbuild/mesonmain.py index 289f491..ab14b15 100644 --- a/mesonbuild/mesonmain.py +++ b/mesonbuild/mesonmain.py @@ -116,9 +116,10 @@ class MesonApp: print('''Trying to run Meson on a build directory that has already been configured. If you want to build it, just run your build command (e.g. ninja) inside the build directory. Meson will autodetect any changes in your setup and regenerate -itself as required. +itself as required. Though it shouldn't be necessary, running ninja reconfigure +will force Meson to regenerate the build files. -If you want to change option values, use the mesonconf tool instead.''') +If you want to change option values, use meson configure instead.''') sys.exit(0) else: if handshake: |