summaryrefslogtreecommitdiff
path: root/scripts/kconfig
diff options
context:
space:
mode:
authorBrian Gerst <bgerst@quark.didntduck.org>2004-09-06 01:53:04 +0200
committerTom Rini <trini@kernel.crashing.org>2004-09-06 01:53:04 +0200
commitf7e7e745a3c505bdb3f93ea25b0a208238e7d05e (patch)
treeb739aca2678deae976b8b4eb1180ca520da8b116 /scripts/kconfig
parent969c4560c5fbc42b1f4cdafdf763483ce0d453a1 (diff)
kbuild: use KERNELRELEASE
This patch changes several places where the kernel version string is put together from it's components with $KERNELRELEASE. From: Brian Gerst <bgerst@quark.didntduck.org> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/kconfig')
-rw-r--r--scripts/kconfig/gconf.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c
index 489c4ff02ac5..0b956e32b369 100644
--- a/scripts/kconfig/gconf.c
+++ b/scripts/kconfig/gconf.c
@@ -275,9 +275,8 @@ void init_main_window(const gchar * glade_file)
/*"style", PANGO_STYLE_OBLIQUE, */
NULL);
- sprintf(title, "Linux Kernel v%s.%s.%s%s Configuration",
- getenv("VERSION"), getenv("PATCHLEVEL"),
- getenv("SUBLEVEL"), getenv("EXTRAVERSION"));
+ sprintf(title, "Linux Kernel v%s Configuration",
+ getenv("KERNELRELEASE"));
gtk_window_set_title(GTK_WINDOW(main_wnd), title);
gtk_widget_show(main_wnd);