Allow empty extra arguments in gettext script

pull/1891/head
Rene Lopez 8 years ago committed by Jussi Pakkanen
parent b54e1d29fe
commit 94f46447bb
  1. 2
      mesonbuild/scripts/gettext.py

@ -88,7 +88,7 @@ def run(args):
options = parser.parse_args(args)
subcmd = options.command
langs = options.langs.split('@@') if options.langs else None
extra_args = options.extra_args.split('@@')
extra_args = options.extra_args.split('@@') if options.extra_args else []
subdir = os.environ.get('MESON_SUBDIR', '')
if options.subdir:
subdir = options.subdir

Loading…
Cancel
Save