diff options
author | Thomas De Schampheleire <patrickdepinguin@gmail.com> | 2013-07-17 08:25:43 +0200 |
---|---|---|
committer | Thomas De Schampheleire <patrickdepinguin@gmail.com> | 2013-07-17 08:25:43 +0200 |
commit | 2aa92300fd5630d60f181103fe2e7727487a4dbc (patch) | |
tree | 0df75513364b6742f35234285dbf0544cd2c828f /kconfig | |
parent | 6c2c252dc899aa0bfea48ed25bfec8a9b9db5323 (diff) | |
download | crosstool-ng-2aa92300fd5630d60f181103fe2e7727487a4dbc.tar.gz crosstool-ng-2aa92300fd5630d60f181103fe2e7727487a4dbc.tar.bz2 crosstool-ng-2aa92300fd5630d60f181103fe2e7727487a4dbc.zip |
docs/help: rename defconfig/olddefconfig into
After commit 15f57d843296e244487ac0845a73247f9d6749b8, the defconfig target
has been renamed into savedefconfig, and olddefconfig into defconfig. However,
the help text and man page was not updated.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
[yann.morin.1998@free.fr: rename CONFIG -> DEFCONFIG]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <0c1dff89c9ee1672693f.1374042343@BEANTN0L019720>
Patchwork-Id: 259601
Diffstat (limited to 'kconfig')
-rw-r--r-- | kconfig/kconfig.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kconfig/kconfig.mk b/kconfig/kconfig.mk index bf69cbf7..cb9f91c0 100644 --- a/kconfig/kconfig.mk +++ b/kconfig/kconfig.mk @@ -29,11 +29,11 @@ oldconfig: .config savedefconfig: .config @$(ECHO) ' GEN $@' - $(SILENT)$(CONF) --savedefconfig=$${CONFIG-defconfig} $(KCONFIG_TOP) + $(SILENT)$(CONF) --savedefconfig=$${DEFCONFIG-defconfig} $(KCONFIG_TOP) defconfig: @$(ECHO) ' CONF $@' - $(SILENT)$(CONF) --defconfig=$${CONFIG-defconfig} $(KCONFIG_TOP) + $(SILENT)$(CONF) --defconfig=$${DEFCONFIG-defconfig} $(KCONFIG_TOP) # Always be silent, the stdout an be >.config extractconfig: @@ -58,6 +58,6 @@ help-config:: @echo ' oldconfig - Update current config using a provided .config as base' @echo ' extractconfig - Extract to stdout the configuration items from a' @echo ' build.log file piped to stdin' - @echo ' defconfig - Save current config as a mini-defconfig to $${CONFIG}' - @echo ' olddefconfig - Update config from a mini-defconfig $${CONFIG}' - @echo ' (default: $${CONFIG}=./defconfig)' + @echo ' savedefconfig - Save current config as a mini-defconfig to $${DEFCONFIG}' + @echo ' defconfig - Update config from a mini-defconfig $${DEFCONFIG}' + @echo ' (default: $${DEFCONFIG}=./defconfig)' |