forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'kbuild-fixes-v6.5' of git://git.kernel.org/pub/scm/linux/k…
…ernel/git/masahiroy/linux-kbuild Pull Kbuild fixes from Masahiro Yamada: - Fix stale help text in gconfig - Support *.S files in compile_commands.json - Flatten KBUILD_CFLAGS - Fix external module builds with Rust so that temporary files are created in the modules directories instead of the kernel tree * tag 'kbuild-fixes-v6.5' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild: kbuild: rust: avoid creating temporary files kbuild: flatten KBUILD_CFLAGS gen_compile_commands: add assembly files to compilation database kconfig: gconfig: correct program name in help text kconfig: gconfig: drop the Show Debug Info help text
- Loading branch information
Showing
5 changed files
with
31 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -636,7 +636,7 @@ void on_introduction1_activate(GtkMenuItem * menuitem, gpointer user_data) | |
{ | ||
GtkWidget *dialog; | ||
const gchar *intro_text = | ||
"Welcome to gkc, the GTK+ graphical configuration tool\n" | ||
"Welcome to gconfig, the GTK+ graphical configuration tool.\n" | ||
"For each option, a blank box indicates the feature is disabled, a\n" | ||
"check indicates it is enabled, and a dot indicates that it is to\n" | ||
"be compiled as a module. Clicking on the box will cycle through the three states.\n" | ||
|
@@ -647,10 +647,7 @@ void on_introduction1_activate(GtkMenuItem * menuitem, gpointer user_data) | |
"Although there is no cross reference yet to help you figure out\n" | ||
"what other options must be enabled to support the option you\n" | ||
"are interested in, you can still view the help of a grayed-out\n" | ||
"option.\n" | ||
"\n" | ||
"Toggling Show Debug Info under the Options menu will show \n" | ||
"the dependencies, which you can then match by examining other options."; | ||
"option."; | ||
|
||
dialog = gtk_message_dialog_new(GTK_WINDOW(main_wnd), | ||
GTK_DIALOG_DESTROY_WITH_PARENT, | ||
|
@@ -667,7 +664,7 @@ void on_about1_activate(GtkMenuItem * menuitem, gpointer user_data) | |
{ | ||
GtkWidget *dialog; | ||
const gchar *about_text = | ||
"gkc is copyright (c) 2002 Romain Lievin <[email protected]>.\n" | ||
"gconfig is copyright (c) 2002 Romain Lievin <[email protected]>.\n" | ||
"Based on the source code from Roman Zippel.\n"; | ||
|
||
dialog = gtk_message_dialog_new(GTK_WINDOW(main_wnd), | ||
|
@@ -685,7 +682,7 @@ void on_license1_activate(GtkMenuItem * menuitem, gpointer user_data) | |
{ | ||
GtkWidget *dialog; | ||
const gchar *license_text = | ||
"gkc is released under the terms of the GNU GPL v2.\n" | ||
"gconfig is released under the terms of the GNU GPL v2.\n" | ||
"For more information, please see the source code or\n" | ||
"visit http://www.fsf.org/licenses/licenses.html\n"; | ||
|
||
|