diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2004-08-13 22:32:31 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2004-08-13 22:32:31 +0000 |
commit | 118c4fbab25f24c42ed5dc9c7ef579b13904a9ee (patch) | |
tree | 24e0ab6672a17141ac8f81ccfd0ac5cc4a2d27ec /config | |
parent | 64218d3eae890f8166fd56651c6599e5695e216c (diff) | |
download | binutils-118c4fbab25f24c42ed5dc9c7ef579b13904a9ee.tar.gz binutils-118c4fbab25f24c42ed5dc9c7ef579b13904a9ee.tar.bz2 binutils-118c4fbab25f24c42ed5dc9c7ef579b13904a9ee.zip |
2004-08-13 Nathanael Nerode <neroden@gcc.gnu.org>
* Add ACX_{TARGET,HOST,BUILD}_NONCANONICAL,
which do an automatic AC_SUBST on _GCC_TOPLEV_*_NONCANONICAL.
The intention is that we will migrate to these bit by bit.
Diffstat (limited to 'config')
-rw-r--r-- | config/ChangeLog | 6 | ||||
-rw-r--r-- | config/acx.m4 | 24 |
2 files changed, 30 insertions, 0 deletions
diff --git a/config/ChangeLog b/config/ChangeLog index fb7a5fd2a35..0c045c267db 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,9 @@ +2004-08-13 Nathanael Nerode <neroden@gcc.gnu.org> + + * Add ACX_{TARGET,HOST,BUILD}_NONCANONICAL, + which do an automatic AC_SUBST on _GCC_TOPLEV_*_NONCANONICAL. + The intention is that we will migrate to these bit by bit. + 2004-08-01 Robert Millan <robertmh@gnu.org> * mt-linux: Rename to ... diff --git a/config/acx.m4 b/config/acx.m4 index 09bac1c6c64..d4a583dc67f 100644 --- a/config/acx.m4 +++ b/config/acx.m4 @@ -38,6 +38,30 @@ esac ]) []dnl # _GCC_TOPLEV_NONCANONICAL_TARGET dnl #### +dnl # ACX_NONCANONICAL_BUILD +dnl # Like underscored version, but AC_SUBST's. +AC_DEFUN([ACX_NONCANONICAL_BUILD], +[AC_REQUIRE([_GCC_TOPLEV_NONCANONICAL_BUILD]) []dnl +AC_SUBST(build_noncanonical) +]) []dnl # ACX_NONCANONICAL_BUILD + +dnl #### +dnl # ACX_NONCANONICAL_HOST +dnl # Like underscored version, but AC_SUBST's. +AC_DEFUN([ACX_NONCANONICAL_HOST], +[AC_REQUIRE([_GCC_TOPLEV_NONCANONICAL_HOST]) []dnl +AC_SUBST(host_noncanonical) +]) []dnl # ACX_NONCANONICAL_HOST + +dnl #### +dnl # ACX_NONCANONICAL_TARGET +dnl # Like underscored version, but AC_SUBST's. +AC_DEFUN([ACX_NONCANONICAL_TARGET], +[AC_REQUIRE([_GCC_TOPLEV_NONCANONICAL_TARGET]) []dnl +AC_SUBST(target_noncanonical) +]) []dnl # ACX_NONCANONICAL_TARGET + +dnl #### dnl # GCC_TOPLEV_SUBDIRS dnl # GCC & friends build 'build', 'host', and 'target' tools. These must dnl # be separated into three well-known subdirectories of the build directory: |