diff options
author | Diego Viola <diego.viola@gmail.com> | 2015-05-31 13:35:51 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2015-06-03 04:56:12 -0400 |
commit | 39c3f1ba5ee3b937c43747f60dfa869d9776a4ac (patch) | |
tree | 5e9c9489413630f6e73d39624cfbff3a411e76c1 | |
parent | 092373c2b8cb67b757ec59f3e6251b45ef333b38 (diff) |
scripts/kconfig/Makefile: Cosmetic fixes
Signed-off-by: Diego Viola <diego.viola@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
-rw-r--r-- | scripts/kconfig/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 3b48f7afb894..9e0be1cb0813 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
@@ -86,7 +86,7 @@ $(simple-targets): $(obj)/conf | |||
86 | PHONY += oldnoconfig savedefconfig defconfig | 86 | PHONY += oldnoconfig savedefconfig defconfig |
87 | 87 | ||
88 | # oldnoconfig is an alias of olddefconfig, because people already are dependent | 88 | # oldnoconfig is an alias of olddefconfig, because people already are dependent |
89 | # on its behavior(sets new symbols to their default value but not 'n') with the | 89 | # on its behavior (sets new symbols to their default value but not 'n') with the |
90 | # counter-intuitive name. | 90 | # counter-intuitive name. |
91 | oldnoconfig: olddefconfig | 91 | oldnoconfig: olddefconfig |
92 | 92 | ||
@@ -125,7 +125,7 @@ help: | |||
125 | @echo ' nconfig - Update current config utilising a ncurses menu based program' | 125 | @echo ' nconfig - Update current config utilising a ncurses menu based program' |
126 | @echo ' menuconfig - Update current config utilising a menu based program' | 126 | @echo ' menuconfig - Update current config utilising a menu based program' |
127 | @echo ' xconfig - Update current config utilising a Qt based front-end' | 127 | @echo ' xconfig - Update current config utilising a Qt based front-end' |
128 | @echo ' gconfig - Update current config utilising a GTK based front-end' | 128 | @echo ' gconfig - Update current config utilising a GTK+ based front-end' |
129 | @echo ' oldconfig - Update current config utilising a provided .config as base' | 129 | @echo ' oldconfig - Update current config utilising a provided .config as base' |
130 | @echo ' localmodconfig - Update current config disabling modules not loaded' | 130 | @echo ' localmodconfig - Update current config disabling modules not loaded' |
131 | @echo ' localyesconfig - Update current config converting local mods to core' | 131 | @echo ' localyesconfig - Update current config converting local mods to core' |
@@ -160,7 +160,7 @@ HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) \ | |||
160 | # qconf: Used for the xconfig target | 160 | # qconf: Used for the xconfig target |
161 | # Based on Qt which needs to be installed to compile it | 161 | # Based on Qt which needs to be installed to compile it |
162 | # gconf: Used for the gconfig target | 162 | # gconf: Used for the gconfig target |
163 | # Based on GTK which needs to be installed to compile it | 163 | # Based on GTK+ which needs to be installed to compile it |
164 | # object files used by all kconfig flavours | 164 | # object files used by all kconfig flavours |
165 | 165 | ||
166 | lxdialog := lxdialog/checklist.o lxdialog/util.o lxdialog/inputbox.o | 166 | lxdialog := lxdialog/checklist.o lxdialog/util.o lxdialog/inputbox.o |
@@ -273,7 +273,7 @@ $(obj)/gconf.o: $(obj)/.tmp_gtkcheck | |||
273 | ifeq ($(MAKECMDGOALS),gconfig) | 273 | ifeq ($(MAKECMDGOALS),gconfig) |
274 | -include $(obj)/.tmp_gtkcheck | 274 | -include $(obj)/.tmp_gtkcheck |
275 | 275 | ||
276 | # GTK needs some extra effort, too... | 276 | # GTK+ needs some extra effort, too... |
277 | $(obj)/.tmp_gtkcheck: | 277 | $(obj)/.tmp_gtkcheck: |
278 | @if `pkg-config --exists gtk+-2.0 gmodule-2.0 libglade-2.0`; then \ | 278 | @if `pkg-config --exists gtk+-2.0 gmodule-2.0 libglade-2.0`; then \ |
279 | if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then \ | 279 | if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then \ |
@@ -304,7 +304,7 @@ quiet_cmd_moc = MOC $@ | |||
304 | $(obj)/%.moc: $(src)/%.h $(obj)/.tmp_qtcheck | 304 | $(obj)/%.moc: $(src)/%.h $(obj)/.tmp_qtcheck |
305 | $(call cmd,moc) | 305 | $(call cmd,moc) |
306 | 306 | ||
307 | # Extract gconf menu items for I18N support | 307 | # Extract gconf menu items for i18n support |
308 | $(obj)/gconf.glade.h: $(obj)/gconf.glade | 308 | $(obj)/gconf.glade.h: $(obj)/gconf.glade |
309 | $(Q)intltool-extract --type=gettext/glade --srcdir=$(srctree) \ | 309 | $(Q)intltool-extract --type=gettext/glade --srcdir=$(srctree) \ |
310 | $(obj)/gconf.glade | 310 | $(obj)/gconf.glade |