public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kbuild: setlocalversion should respect srctree param when looking for auto.conf
@ 2010-07-13  9:34 Martin Jansa
  2010-07-13 12:36 ` Michal Marek
  0 siblings, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2010-07-13  9:34 UTC (permalink / raw)
  To: linux-kernel; +Cc: Michal Marek, Martin Jansa

* it works properly only when CWD == scrtree
* with this patch:
  jama src # /usr/src/linux/scripts/setlocalversion /usr/src/linux
  -JaMa-00001-g18672de
* without:
  jama src # /usr/src/linux/scripts/setlocalversion /usr/src/linux
  Error: kernelrelease not valid - run 'make prepare' to update it

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 scripts/setlocalversion |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/setlocalversion b/scripts/setlocalversion
index d6a866e..41864d1 100755
--- a/scripts/setlocalversion
+++ b/scripts/setlocalversion
@@ -135,7 +135,7 @@ if $scm_only; then
 	exit
 fi
 
-if test -e include/config/auto.conf; then
+if test -e "${srctree}/include/config/auto.conf"; then
 	source "$_"
 else
 	echo "Error: kernelrelease not valid - run 'make prepare' to update it"
-- 
1.7.1.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-07-13 16:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-13  9:34 [PATCH] kbuild: setlocalversion should respect srctree param when looking for auto.conf Martin Jansa
2010-07-13 12:36 ` Michal Marek
2010-07-13 12:57   ` Martin Jansa
2010-07-13 16:08     ` Michal Marek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox