pdb: let pdbgen output to stderr.

If we capture the stderr, then we never get error messages when the
generation script fails.
This commit is contained in:
Jehan 2026-02-02 12:26:17 +01:00
parent 651da72b6c
commit 28a4d8fd07

View file

@ -16,7 +16,6 @@ os.chdir(os.path.join(top_srcdir, 'pdb'))
result = subprocess.run(
[PERL, 'pdbgen.pl', 'app', 'lib'],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE
)
if result.returncode == 0:
with open(os.path.join(top_builddir, 'pdb', 'stamp-pdbgen.h'), 'w') as f: