summaryrefslogtreecommitdiff
path: root/maint/gen_xlat_defs.sh
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headersDmitry V. Levin2023-02-261-1/+1
| | | | | Headers updated automatically using maint/update_copyright_years.sh script.
* treewide: replace "sed -r" with "sed -E"Dmitry V. Levin2023-02-141-3/+3
| | | | | | | | | Use -E option instead of -r to enable use extended regular expression syntax in sed expressions. It has been supported for years by GNU sed, and is now included in POSIX. Link: https://www.austingroupbugs.net/view.php?id=528 Resolves: https://github.com/strace/strace/issues/216
* Update copyright headersDmitry V. Levin2020-02-061-1/+1
| | | | | Headers updated automatically using maint/update_copyright_years.sh script.
* maint: gen_xlat_defs.sh updatesEugene Syromyatnikov2020-01-281-3/+3
| | | | | | | | Allow whitespace between "#" and "define" and allow passing glob expressions to the -a option. * maint/gen_xlat_defs.sh: Add "[[:space:]]*" between "#" and "define" in regular expressions; match "[^:]*" instead of "$ARCH_DEFS_FILE".
* Change the license of strace to LGPL-2.1-or-laterDmitry V. Levin2018-12-101-21/+1
| | | | | | | | strace is now provided under the terms of the GNU Lesser General Public License version 2.1 or later, see COPYING for more details. strace test suite is now provided under the terms of the GNU General Public License version 2 or later, see tests/COPYING for more details.
* maint: add a Linux UAPI headers crawlerEugene Syromyatnikov2018-08-051-0/+230
This script is going to be used to generate xlat fallback values. * maint/gen_xlat_defs.sh: New file. Co-Authored-by: Dmitry V. Levin <ldv@altlinux.org>