[PATCH] mkmakefile: add export of $ARCH if specified on command-line

From: Chris Metcalf
Date: Mon Mar 26 2012 - 16:55:55 EST


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-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/