diff options
Diffstat (limited to 'mesonbuild/minstall.py')
-rw-r--r-- | mesonbuild/minstall.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/minstall.py b/mesonbuild/minstall.py index 4d40752..0adcda2 100644 --- a/mesonbuild/minstall.py +++ b/mesonbuild/minstall.py @@ -538,6 +538,7 @@ class Installer: else: raise + def rebuild_all(wd: str) -> bool: if not (Path(wd) / 'build.ninja').is_file(): print('Only ninja backend is supported to rebuild the project before installation.') @@ -555,6 +556,7 @@ def rebuild_all(wd: str) -> bool: return True + def run(opts): datafilename = 'meson-private/install.dat' private_dir = os.path.dirname(datafilename) |