diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-10 14:58:33 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-10 14:58:33 +0000 |
commit | e5de38497a2eea4683923fa6bca716583cfcdd83 (patch) | |
tree | ac40719d4788b08c7392e2666786a4d6effb1669 /Makefile | |
parent | 62f9856f5468123605aab5ff3457febe21e8141c (diff) | |
download | busybox-e5de38497a2eea4683923fa6bca716583cfcdd83.tar.gz |
- 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.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |