public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] preserve ARCH and CROSS_COMPILE in the build directory generated Makefile
@ 2005-04-29 11:35 Pavel Pisa
  2005-04-29 21:00 ` Sam Ravnborg
  0 siblings, 1 reply; 5+ messages in thread
From: Pavel Pisa @ 2005-04-29 11:35 UTC (permalink / raw)
  To: Linux Kernel Mailing List, kai, sam

This patch ensures, that architecture and target cross-tools prefix
is preserved in the Makefile generated in the build directory for
out of source tree kernel compilation. This prevents accidental
screwing of configuration and builds for the case, that make without
full architecture specific options is invoked in the build
directory. It is secure use accustomed "make", "make xconfig",
etc. without fear and special care now.

Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>

Index: linux-2.6.11.5/scripts/mkmakefile
===================================================================
--- linux-2.6.11.5.orig/scripts/mkmakefile
+++ linux-2.6.11.5/scripts/mkmakefile
@@ -29,3 +29,9 @@ all:
 
 EOF
 
+if [ -n "${ARCH}" ] ; then
+	echo "ARCH ?= ${ARCH}"
+fi
+if [ -n "${CROSS_COMPILE}" ] ; then
+	echo "CROSS_COMPILE ?= ${CROSS_COMPILE}"
+fi


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-04-29 22:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-29 11:35 [PATCH] preserve ARCH and CROSS_COMPILE in the build directory generated Makefile Pavel Pisa
2005-04-29 21:00 ` Sam Ravnborg
2005-04-29 21:42   ` Russell King
2005-04-29 22:32     ` Pavel Pisa
2005-04-29 22:26   ` Daniel Jacobowitz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox