Update of /cvsroot/linux-mips/linux/arch/mips
In directory usw-pr-cvs1:/tmp/cvs-serv21963/arch/mips
Modified Files:
Makefile
Log Message:
Don't needlessly override CROSS_COMPILE..
Index: Makefile
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/Makefile,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** Makefile 2001/08/25 11:20:20 1.15
--- Makefile 2001/09/16 03:28:13 1.16
***************
*** 23,27 ****
ifdef CONFIG_CROSSCOMPILE
! CROSS_COMPILE = $(tool-prefix)
endif
--- 23,29 ----
ifdef CONFIG_CROSSCOMPILE
! ifndef CROSS_COMPILE
! CROSS_COMPILE = $(tool-prefix)
! endif
endif
|