contrib: port doxygen script to Python3

contrib/ChangeLog:

	* filter_gcc_for_doxygen: Use python3 and not python2.
	* filter_params.py: Likewise.
This commit is contained in:
Martin Liska 2023-04-28 16:41:19 +02:00
parent 1dd154f640
commit db7e7776b0
2 changed files with 2 additions and 2 deletions

View File

@ -8,5 +8,5 @@
# process is put on stdout. # process is put on stdout.
dir=`dirname $0` dir=`dirname $0`
python $dir/filter_params.py $1 env python3 $dir/filter_params.py $1
exit 0 exit 0

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python3
""" """
Filters out some of the #defines used throughout the GCC sources: Filters out some of the #defines used throughout the GCC sources:
- GTY(()) marks declarations for gengtype.c - GTY(()) marks declarations for gengtype.c