* Makefile.in (CC_FOR_BUILD): New variable.

(AR, AR_FLAGS, BISON, MAKEINFO): Remove duplicate variables.
	(RANLIB, CC): Likewise.
	(end): Use $(CC_FOR_BUILD), not $(CC).
	* configure.in: Set CC_FOR_BUILD.
	* configure: Rebuild.
This commit is contained in:
Ian Lance Taylor 1996-09-14 04:05:41 +00:00
parent 19d44375ff
commit ad0d14e7a2
1 changed files with 11 additions and 0 deletions

View File

@ -16,4 +16,15 @@ AR=${AR-ar}
AC_SUBST(AR)
AC_PROG_RANLIB
# Put a plausible default for CC_FOR_BUILD in Makefile.
AC_C_CROSS
if test -z "$CC_FOR_BUILD"; then
if test "x$cross_compiling" = "xno"; then
CC_FOR_BUILD='$(CC)'
else
CC_FOR_BUILD=gcc
fi
fi
AC_SUBST(CC_FOR_BUILD)
AC_OUTPUT(Makefile)