aboutsummaryrefslogtreecommitdiff
path: root/Makefile.tpl
diff options
context:
space:
mode:
authorDaniel Jacobowitz <dan@codesourcery.com>2007-02-09 15:14:37 +0000
committerDaniel Jacobowitz <dan@codesourcery.com>2007-02-09 15:14:37 +0000
commita1b0c908f67782a02925a73f7d44b5eb53311a50 (patch)
tree2347e7eec03baaf71419b7253fe2ad78abf5a76c /Makefile.tpl
parentb9408e31e8b947f4c222925aada6bc03abed4963 (diff)
* Makefile.tpl (build_alias, host_alias, target_alias): Use
noncanonical equivalents. * configure.in: Rename to... * configure.ac: ...this. Update AC_PREREQ. Prevent error for AS_FOR_TARGET. Set build_noncanonical, host_noncanonical, and target_noncanonical. Use them. Rewrite removal of configure arguments for autoconf 2.59. Discard variable settings. Force program_transform_name for native tools. * Makefile.in: Regenerated. * configure: Regenerated with autoconf 2.59. * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac. * acx.m4 (ACX_CHECK_INSTALLED_TARGET_TOOL): Avoid AC_PATH_PROG with an empty path. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@121751 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'Makefile.tpl')
-rw-r--r--Makefile.tpl8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.tpl b/Makefile.tpl
index f4841f01c62..a3c5093b1b4 100644
--- a/Makefile.tpl
+++ b/Makefile.tpl
@@ -28,15 +28,15 @@ in
# -------------------------------
VPATH=@srcdir@
-build_alias=@build_alias@
+build_alias=@build_noncanonical@
build_vendor=@build_vendor@
build_os=@build_os@
build=@build@
-host_alias=@host_alias@
+host_alias=@host_noncanonical@
host_vendor=@host_vendor@
host_os=@host_os@
host=@host@
-target_alias=@target_alias@
+target_alias=@target_noncanonical@
target_vendor=@target_vendor@
target_os=@target_os@
target=@target@
@@ -1588,7 +1588,7 @@ config.status: configure
# Rebuilding configure.
AUTOCONF = autoconf
-$(srcdir)/configure: @MAINT@ $(srcdir)/configure.in $(srcdir)/config/acx.m4
+$(srcdir)/configure: @MAINT@ $(srcdir)/configure.ac $(srcdir)/config/acx.m4
cd $(srcdir) && $(AUTOCONF)
# ------------------------------