If you create a new build tree and set "ARCH=foo" on the command line, it makes sense for that build tree to remember the architecture that it's meant to be built for. Signed-off-by: Chris Metcalf <cmetcalf@xxxxxxxxxx> --- scripts/mkmakefile | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/scripts/mkmakefile b/scripts/mkmakefile index 0cc0442..67682a8 100644 --- a/scripts/mkmakefile +++ b/scripts/mkmakefile @@ -57,3 +57,7 @@ Makefile:; %/: all @: EOF + +if [ -n "$ARCH" ]; then + echo "export ARCH = $ARCH" >> $2/Makefile +fi -- 1.6.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html