diff options
author | Jose E. Marchesi <jose.marchesi@oracle.com> | 2015-02-18 13:52:53 +0100 |
---|---|---|
committer | Jose E. Marchesi <jose.marchesi@oracle.com> | 2015-02-18 13:52:53 +0100 |
commit | f6a88844c36e2c03806563c9703b92af6ba0b345 (patch) | |
tree | bfff03b882790a05676ff142b96f96c2fe77d565 /gdb/configure.ac | |
parent | e3ee8ed41b6a4365897d776cc181a1bd813010c6 (diff) | |
download | gdb-f6a88844c36e2c03806563c9703b92af6ba0b345.zip gdb-f6a88844c36e2c03806563c9703b92af6ba0b345.tar.gz gdb-f6a88844c36e2c03806563c9703b92af6ba0b345.tar.bz2 |
Factorize target program transformations in the GDB_AC_TRANSFORM macro.
This patch introduces a new M4 macro GDB_AC_TRANSFORM to avoid repeating
the common idiom which is the transformation of target program names,
i.e. from gdb to sparc64-linux-gnu-gdb. It also makes gdb/configure.ac
and gdb/testsuite/configure.ac to use the new macro.
gdb/ChangeLog:
2015-02-18 Jose E. Marchesi <jose.marchesi@oracle.com>
* configure: Regenerated.
* configure.ac: Use GDB_AC_TRANSFORM.
* Makefile.in (aclocal_m4_deps): Added transform.m4.
* acinclude.m4: sinclude transform.m4.
* transform.m4: New file.
(GDB_AC_TRANSFORM): New macro.
gdb/testsuite/ChangeLog:
2015-02-18 Jose E. Marchesi <jose.marchesi@oracle.com>
* configure: Regenerated.
* configure.ac: Use GDB_AC_TRANSFORM.
* aclocal.m4: sinclude ../transform.m4.
Diffstat (limited to 'gdb/configure.ac')
-rw-r--r-- | gdb/configure.ac | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/gdb/configure.ac b/gdb/configure.ac index 39fcef2..90bf71c 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -2444,18 +2444,8 @@ dnl At the moment, we just assume it's UTF-8. AC_DEFINE(GDB_DEFAULT_HOST_CHARSET, "UTF-8", [Define to be a string naming the default host character set.]) -# Undo the $ec_script escaping suitable for Makefile. -transform=`echo "$program_transform_name" | sed -e 's/[\\$][\\$]/\\$/g'` -GDB_TRANSFORM_NAME=`echo gdb | sed -e "$transform"` -if test "x$GDB_TRANSFORM_NAME" = x; then - GDB_TRANSFORM_NAME=gdb -fi -AC_SUBST(GDB_TRANSFORM_NAME) -GCORE_TRANSFORM_NAME=`echo gcore | sed -e "$transform"` -if test "x$GCORE_TRANSFORM_NAME" = x; then - GCORE_TRANSFORM_NAME=gcore -fi -AC_SUBST(GCORE_TRANSFORM_NAME) +GDB_AC_TRANSFORM([gdb], [GDB_TRANSFORM_NAME]) +GDB_AC_TRANSFORM([gcore], [GCORE_TRANSFORM_NAME]) AC_CONFIG_FILES([gcore], [chmod +x gcore]) AC_OUTPUT(Makefile gdb-gdb.gdb doc/Makefile data-directory/Makefile, |