mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-25 23:21:33 +03:00
Revert "generate-dns_type-gperf: modernize python syntax"
This reverts commit b0a336a669
.
Fixes #18708.
This commit is contained in:
parent
1f9441a72b
commit
f2ec239c2b
@ -1,7 +1,8 @@
|
||||
#!/usr/bin/env python3
|
||||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||||
|
||||
"Generate %-from-name.gperf from %-list.txt"
|
||||
"""Generate %-from-name.gperf from %-list.txt
|
||||
"""
|
||||
|
||||
import sys
|
||||
|
||||
@ -13,12 +14,12 @@ print("""\
|
||||
_Pragma("GCC diagnostic ignored \\"-Wimplicit-fallthrough\\"")
|
||||
#endif
|
||||
%}""")
|
||||
print(f"""\
|
||||
struct {name}_name {{ const char* name; int id; }};
|
||||
print("""\
|
||||
struct {}_name {{ const char* name; int id; }};
|
||||
%null-strings
|
||||
%%""")
|
||||
%%""".format(name))
|
||||
|
||||
for line in open(input):
|
||||
line = line.rstrip()
|
||||
s = line.replace('_', '-')
|
||||
print(f'{s}, {prefix}{line}')
|
||||
print("{}, {}{}".format(s, prefix, line))
|
||||
|
Loading…
Reference in New Issue
Block a user