diff options
| author | Brian Gerst <bgerst@quark.didntduck.org> | 2004-09-06 01:53:04 +0200 |
|---|---|---|
| committer | Tom Rini <trini@kernel.crashing.org> | 2004-09-06 01:53:04 +0200 |
| commit | f7e7e745a3c505bdb3f93ea25b0a208238e7d05e (patch) | |
| tree | b739aca2678deae976b8b4eb1180ca520da8b116 /scripts/kconfig | |
| parent | 969c4560c5fbc42b1f4cdafdf763483ce0d453a1 (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.c | 5 |
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); |
