diff options
author | Patrick Griffis <tingping@tingping.se> | 2016-10-14 22:58:12 -0400 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2016-10-19 18:44:19 -0400 |
commit | 1781129740973ed37adf5d753cfce1e2a8b2fcfe (patch) | |
tree | 7b8c28efd6fae68d7fa2220defa4c956602f5c9e /mesonbuild/mesonmain.py | |
parent | 263cb6a5f0dcbffdf25e159b3bfa07988838aae9 (diff) | |
download | meson-1781129740973ed37adf5d753cfce1e2a8b2fcfe.zip meson-1781129740973ed37adf5d753cfce1e2a8b2fcfe.tar.gz meson-1781129740973ed37adf5d753cfce1e2a8b2fcfe.tar.bz2 |
gnome: Add yelp() function
Fixes #881
Mentioned in #295
Diffstat (limited to 'mesonbuild/mesonmain.py')
-rw-r--r-- | mesonbuild/mesonmain.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/mesonmain.py b/mesonbuild/mesonmain.py index 7f7ab43..943c087 100644 --- a/mesonbuild/mesonmain.py +++ b/mesonbuild/mesonmain.py @@ -227,6 +227,9 @@ def run_script_command(args): elif cmdname == 'gettext': import mesonbuild.scripts.gettext as abc cmdfunc = abc.run + elif cmdname == 'yelphelper': + import mesonbuild.scripts.yelphelper as abc + cmdfunc = abc.run else: raise MesonException('Unknown internal command {}.'.format(cmdname)) return cmdfunc(cmdargs) |