Messages in this thread Patch in this message |  | | | From | Pavel Pisa <> | | Subject | [PATCH] preserve ARCH and CROSS_COMPILE in the build directory generated Makefile | | Date | Fri, 29 Apr 2005 13:35:33 +0200 |
| |
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 - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |