mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-05 15:15:42 +00:00
This commit is the result of the following actions:
- Running gdb/copyright.py to update all of the copyright headers to
include 2024,
- Manually updating a few files the copyright.py script told me to
update, these files had copyright headers embedded within the
file,
- Regenerating gdbsupport/Makefile.in to refresh it's copyright
date,
- Using grep to find other files that still mentioned 2023. If
these files were updated last year from 2022 to 2023 then I've
updated them this year to 2024.
I'm sure I've probably missed some dates. Feel free to fix them up as
you spot them.
24 lines
761 B
Plaintext
24 lines
761 B
Plaintext
# Copyright (C) 2015-2024 Free Software Foundation, Inc.
|
|
#
|
|
# This file is free software; the Free Software Foundation gives
|
|
# unlimited permission to copy and/or distribute it, with or without
|
|
# modifications, as long as this notice is preserved.
|
|
|
|
# GDB_AC_TRANSFORM([PROGRAM], [VAR])
|
|
#
|
|
# Transform a tool name to get the installed name of PROGRAM and store
|
|
# it in the output variable VAR.
|
|
#
|
|
# This macro uses the SED command stored in $program_transform_name,
|
|
# but it undoes the Makefile-like escaping of $s performed by
|
|
# AC_ARG_PROGRAM.
|
|
|
|
AC_DEFUN([GDB_AC_TRANSFORM], [
|
|
gdb_ac_transform=`echo "$program_transform_name" | sed -e 's/[\\$][\\$]/\\$/g'`
|
|
$2=`echo $1 | sed -e "$gdb_ac_transform"`
|
|
if test "x$$2" = x; then
|
|
$2=$1
|
|
fi
|
|
AC_SUBST($2)
|
|
])
|