public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] remove the `.' in EXTRAVERSION usage
@ 2005-03-05 10:22 Coywolf Qi Hunt
  2005-03-05 10:39 ` Willy Tarreau
  2005-03-05 11:47 ` Alexey Dobriyan
  0 siblings, 2 replies; 4+ messages in thread
From: Coywolf Qi Hunt @ 2005-03-05 10:22 UTC (permalink / raw)
  To: linux-kernel; +Cc: greg, akpm

Since 2.6.9, there came along the LOCALVERSION for people to add local
version in make menuconfig which was EXTRAVERSION originally for imho.
Now EXTRAVERSION goes just as a kernel version number, it's reasonable
to remove the `.' in its usage.

Signed-off-by: Coywolf Qi Hunt <coywolf@gmail.com>

diff -Nrup 2.6.11/Makefile 2.6.11-cy/Makefile
--- 2.6.11/Makefile	2005-03-03 17:10:57.000000000 +0800
+++ 2.6.11-cy/Makefile	2005-03-05 16:40:46.000000000 +0800
@@ -1,7 +1,7 @@
VERSION = 2
PATCHLEVEL = 6
SUBLEVEL = 11
-EXTRAVERSION =
+EXTRAVERSION = 1
NAME=Woozy Numbat

# *DOCUMENTATION*
@@ -158,7 +158,7 @@ LOCALVERSION = $(subst $(space),, \
 	       $(shell cat /dev/null $(localver)) \
 	       $(patsubst "%",%,$(CONFIG_LOCALVERSION)))
 
-KERNELRELEASE=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)$(LOCALVERSION)
+KERNELRELEASE=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL).$(EXTRAVERSION)$(LOCALVERSION)
 
 # SUBARCH tells the usermode build what the underlying arch is.  That is set
 # first, and if a usermode build is happening, the "ARCH=um" on the command
-- 
Coywolf Qi Hunt
Homepage http://sosdg.org/~coywolf/

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

end of thread, other threads:[~2005-03-05 11:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-05 10:22 [patch] remove the `.' in EXTRAVERSION usage Coywolf Qi Hunt
2005-03-05 10:39 ` Willy Tarreau
2005-03-05 11:47 ` Alexey Dobriyan
2005-03-05 11:07   ` Coywolf Qi Hunt

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