diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-03-06 23:09:42 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-03-06 23:09:42 +0100 |
commit | 726ebbaa9f1cae426b5f2a4bddbe0a88c81d754e (patch) | |
tree | dceefc7a1fca805a1c9f4014a4843cb741b7f504 /scripts | |
parent | 102b8bde3b86e5d2eb9e8a60d220e55e00beccf1 (diff) | |
download | busybox-w32-726ebbaa9f1cae426b5f2a4bddbe0a88c81d754e.tar.gz busybox-w32-726ebbaa9f1cae426b5f2a4bddbe0a88c81d754e.tar.bz2 busybox-w32-726ebbaa9f1cae426b5f2a4bddbe0a88c81d754e.zip |
fix bit rot in scripts/Makefile.IMA
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.IMA | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/Makefile.IMA b/scripts/Makefile.IMA index a62618ae0..fcb8e5049 100644 --- a/scripts/Makefile.IMA +++ b/scripts/Makefile.IMA | |||
@@ -9,7 +9,10 @@ objtree := $(CURDIR) | |||
9 | src := $(srctree) | 9 | src := $(srctree) |
10 | obj := $(objtree) | 10 | obj := $(objtree) |
11 | 11 | ||
12 | # Look for make include files relative to root of kernel src | 12 | # Make generated files |
13 | DUMMY := $(shell $(Q)$(srctree)/scripts/gen_build_files.sh $(srctree) $(objtree) >&2) | ||
14 | |||
15 | # Look for make include files relative to root of src | ||
13 | MAKEFLAGS += --include-dir=$(srctree) | 16 | MAKEFLAGS += --include-dir=$(srctree) |
14 | 17 | ||
15 | default: busybox | 18 | default: busybox |
@@ -121,6 +124,9 @@ lib-y:= | |||
121 | include miscutils/Kbuild | 124 | include miscutils/Kbuild |
122 | lib-all-y += $(patsubst %,miscutils/%,$(sort $(lib-y))) | 125 | lib-all-y += $(patsubst %,miscutils/%,$(sort $(lib-y))) |
123 | lib-y:= | 126 | lib-y:= |
127 | include mailutils/Kbuild | ||
128 | lib-all-y += $(patsubst %,mailutils/%,$(sort $(lib-y))) | ||
129 | lib-y:= | ||
124 | include coreutils/libcoreutils/Kbuild | 130 | include coreutils/libcoreutils/Kbuild |
125 | lib-all-y += $(patsubst %,coreutils/libcoreutils/%,$(sort $(lib-y))) | 131 | lib-all-y += $(patsubst %,coreutils/libcoreutils/%,$(sort $(lib-y))) |
126 | lib-y:= | 132 | lib-y:= |