[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-id: <alpine.LNX.2.00.1110221049460.59156@linux>
Date: Sat, 22 Oct 2011 11:12:29 -0400 (EDT)
From: Peter Foley <pefoley2@...izon.net>
To: Linux Kbuild Mailing List <linux-kbuild@...r.kernel.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
mmarek@...e.cz
Subject: [PATCH RFC] try to create KBUILD_OUTPUT automatically
This patch makes it possible to execute make O=work instead of
mkdir work
make O=work
Signed-off-by: Peter Foley <pefoley2@...izon.net>
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 2652089..a4769ac 100644
--- a/Makefile
+++ b/Makefile
@@ -117,7 +117,7 @@ ifneq ($(KBUILD_OUTPUT),)
# Invoke a second make in the output directory, passing relevant variables
# check that the output directory actually exists
saved-output := $(KBUILD_OUTPUT)
-KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
+KBUILD_OUTPUT := $(shell mkdir -p $(KBUILD_OUTPUT) && cd $(KBUILD_OUTPUT) && /bin/pwd)
$(if $(KBUILD_OUTPUT),, \
$(error output directory "$(saved-output)" does not exist))
--
1.7.7
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists