aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-06-10 14:58:33 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-06-10 14:58:33 +0000
commite5de38497a2eea4683923fa6bca716583cfcdd83 (patch)
treeac40719d4788b08c7392e2666786a4d6effb1669 /Makefile
parent62f9856f5468123605aab5ff3457febe21e8141c (diff)
downloadbusybox-w32-e5de38497a2eea4683923fa6bca716583cfcdd83.tar.gz
busybox-w32-e5de38497a2eea4683923fa6bca716583cfcdd83.tar.bz2
busybox-w32-e5de38497a2eea4683923fa6bca716583cfcdd83.zip
- 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--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b31c7bf3c..27e51e35e 100644
--- a/Makefile
+++ b/Makefile
@@ -17,6 +17,8 @@ noconfig_targets := menuconfig config oldconfig randconfig hosttools \
17 clean distclean help \ 17 clean distclean help \
18 release tags 18 release tags
19 19
20nocheck_targets := clean distclean help release tags
21
20# the toplevel sourcedir 22# the toplevel sourcedir
21ifndef top_srcdir 23ifndef top_srcdir
22top_srcdir=$(CURDIR) 24top_srcdir=$(CURDIR)
@@ -56,7 +58,7 @@ else
56endif 58endif
57 59
58ifneq ($(strip $(HAVE_DOT_CONFIG)),y) 60ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
59# pull in OS specific commands like cp, mkdir, etc. early 61# pull in settings early
60-include $(top_srcdir)/Rules.mak 62-include $(top_srcdir)/Rules.mak
61endif 63endif
62 64