* pygnulib/main.py (main): Don't use gnu_make before it is defined.
+2024-02-26 Collin Funk <collin.funk1@gmail.com>
+
+ gnulib-tool.py: Fix undefined variable access.
+ * pygnulib/main.py (main): Don't use gnu_make before it is defined.
+
2024-02-26 Bruno Haible <bruno@clisp.org>
gnulib-tool.py: Reorganize code.
if cmdargs.pobase == None and cmdargs.podomain != None:
message = '%s: warning: --po-domain has no effect without a --po-base option\n' % constants.APP['name']
sys.stderr.write(message)
- if mode != None and 'test' in mode and gnu_make:
+ if mode != None and 'test' in mode and cmdargs.gnu_make:
message = '%s: --gnu-make not supported when including tests\n' % constants.APP['name']
sys.stderr.write(message)
sys.exit(1)