pdb: Port echo use on groups.pl generation to Python

This commit is contained in:
Bruno Lopes 2025-04-24 09:49:04 -03:00
parent aa94975003
commit 7ba10e73d9
No known key found for this signature in database

View file

@ -102,7 +102,7 @@ groups_pl_content += ');\n'
groups_pl = custom_target('groups.pl',
input : [ ],
output: [ 'groups.pl', ],
command: [ 'echo', groups_pl_content, ],
command: [ python, '-c', 'import sys; sys.stdout.write(sys.argv[1])', groups_pl_content ],
capture: true,
)