No one sane would you 'ct-ng config' to configure crosstool-NG.

Remove this useless rule.

 /trunk/kconfig/kconfig.mk |    8     2     6     0 ++------
 /trunk/ct-ng.comp         |    2     1     1     0 +-
 2 files changed, 3 insertions(+), 7 deletions(-)
This commit is contained in:
Yann E. MORIN" 2008-10-13 20:36:37 +00:00
parent 715de83ade
commit ab048ad81d
2 changed files with 3 additions and 7 deletions

View File

@ -13,7 +13,7 @@ _ct-ng () {
start_steps=$(echo "${steps}" |sed -r -e 's/(^| )/\1+/;')
stop_steps=$(echo "${steps}" |sed -r -e 's/(^| )/+\1/;')
actions='config menuconfig oldconfig saveconfig
actions='menuconfig oldconfig saveconfig
list-samples build build. list-steps regtest regtest-local
regtest-global clean distclean wiki-samples updatetools
tarball'

View File

@ -7,7 +7,7 @@ export PROJECTVERSION=$(CT_VERSION)
KCONFIG_TOP = config/config.in
obj = $(CT_TOP_DIR)/kconfig
PHONY += clean help oldconfig menuconfig config defoldconfig
PHONY += clean help oldconfig menuconfig defoldconfig
# Darwin (MacOS-X) does not have proper libintl support
ifeq ($(shell uname -s),Darwin)
@ -148,7 +148,7 @@ $(CT_TOP_DIR)/config.gen/tools.in: $(TOOL_CONFIG_FILES)
$(CT_TOP_DIR)/config.gen/debug.in: $(DEBUG_CONFIG_FILES)
$(call build_gen_menu_in,$(patsubst $(CT_TOP_DIR)/%,%,$@),Debug,DEBUG,config/debug,$(DEBUGS))
config menuconfig oldconfig defoldconfig: $(KCONFIG_TOP)
menuconfig oldconfig defoldconfig: $(KCONFIG_TOP)
$(KCONFIG_TOP):
@ln -sf $(CT_LIB_DIR)/config config
@ -156,9 +156,6 @@ $(KCONFIG_TOP):
menuconfig: $(CONFIG_FILES) $(obj)/mconf
@$(obj)/mconf $(KCONFIG_TOP)
config: $(CONFIG_FILES) $(obj)/conf
@$(obj)/conf $(KCONFIG_TOP)
oldconfig: $(CONFIG_FILES) $(obj)/conf
@$(obj)/conf -s $(KCONFIG_TOP)
@ -167,7 +164,6 @@ defoldconfig: $(CONFIG_FILES) $(obj)/conf
# Help text used by make help
help-config::
@echo ' config - Update current config using a line-oriented program'
@echo ' menuconfig - Update current config using a menu based program'
@echo ' oldconfig - Update current config using a provided .config as base'
@echo ' build log piped into stdin'