- don't check for toolchain-setting for make targets that don't need them

- we already depend on sed, so do away with tr. Avoids pulling in yet another
  dependency.
This commit is contained in:
Bernhard Reutner-Fischer
2006-06-10 14:58:33 +00:00
parent 62f9856f54
commit e5de38497a
2 changed files with 16 additions and 2 deletions

View File

@@ -17,6 +17,8 @@ noconfig_targets := menuconfig config oldconfig randconfig hosttools \
clean distclean help \
release tags
nocheck_targets := clean distclean help release tags
# the toplevel sourcedir
ifndef top_srcdir
top_srcdir=$(CURDIR)
@@ -56,7 +58,7 @@ else
endif
ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
# pull in OS specific commands like cp, mkdir, etc. early
# pull in settings early
-include $(top_srcdir)/Rules.mak
endif