diff options
author | Nicolas Schneider <nioncode+git@gmail.com> | 2016-03-01 14:07:38 +0100 |
---|---|---|
committer | Nicolas Schneider <nioncode+git@gmail.com> | 2016-03-01 14:07:38 +0100 |
commit | 92187501ed51448b4ee596d059b1cd88e856fe56 (patch) | |
tree | cc956e0a592238cf47ce761ba2cb1f670ba57528 /mesonbuild/mesonmain.py | |
parent | 52b66edb6cfb891e3a6b8c18d50d98e98dd100ec (diff) | |
download | meson-92187501ed51448b4ee596d059b1cd88e856fe56.zip meson-92187501ed51448b4ee596d059b1cd88e856fe56.tar.gz meson-92187501ed51448b4ee596d059b1cd88e856fe56.tar.bz2 |
Can add postconfigure script.
Diffstat (limited to 'mesonbuild/mesonmain.py')
-rw-r--r-- | mesonbuild/mesonmain.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/mesonmain.py b/mesonbuild/mesonmain.py index 543a31f..95e6731 100644 --- a/mesonbuild/mesonmain.py +++ b/mesonbuild/mesonmain.py @@ -168,6 +168,7 @@ itself as required.''' intr.run() env.dump_coredata() g.generate(intr) + g.run_postconf_scripts() dumpfile = os.path.join(env.get_scratch_dir(), 'build.dat') pickle.dump(b, open(dumpfile, 'wb')) |