[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <1265215761.24386.5.camel@gandalf.stny.rr.com>
Date: Wed, 03 Feb 2010 11:49:21 -0500
From: Steven Rostedt <rostedt@...dmis.org>
To: Michal Marek <mmarek@...e.cz>
Cc: linux-kernel@...r.kernel.org, linux-kbuild@...r.kernel.org,
Andrew Morton <akpm@...ux-foundation.org>,
Anibal Monsalve Salazar <anibal@...ian.org>
Subject: [PATCH][linux-next] kconfig: simplify LSMOD= handling
This has been merged into my for-next branch:
git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-kconfig.git
for-linus-2
Michal Marek (1):
kconfig: Simplify LSMOD= handling
----
scripts/kconfig/Makefile | 9 ++++-----
1 files changed, 4 insertions(+), 5 deletions(-)
---------------------------
commit 3cebbb81c7e75321e25cc586d07a25a3d98278fc
Author: Michal Marek <mmarek@...e.cz>
Date: Wed Feb 3 17:20:14 2010 +0100
kconfig: Simplify LSMOD= handling
Signed-off-by: Michal Marek <mmarek@...e.cz>
LKML-Reference: <20100203162014.GA10956@...ie.suse.cz>
Signed-off-by: Steven Rostedt <rostedt@...dmis.org>
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile
index 85b9065..186c466 100644
--- a/scripts/kconfig/Makefile
+++ b/scripts/kconfig/Makefile
@@ -32,11 +32,10 @@ silentoldconfig: $(obj)/conf
# if no path is given, then use src directory to find file
ifdef LSMOD
-LSMOD_F = $(shell if [ `basename $(LSMOD)` == $(LSMOD) ]; then \
- echo $(objtree)/$(LSMOD); \
- else \
- echo $(LSMOD); \
- fi)
+LSMOD_F := $(LSMOD)
+ifeq ($(findstring /,$(LSMOD)),)
+ LSMOD_F := $(objtree)/$(LSMOD)
+endif
endif
localmodconfig: $(obj)/streamline_config.pl $(obj)/conf
--
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