diff options
| author | Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> | 2002-12-04 02:27:15 -0600 |
|---|---|---|
| committer | Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> | 2002-12-04 02:27:15 -0600 |
| commit | 260b4179e57d412d7ed71cb5350775bf650ef7c6 (patch) | |
| tree | 5ada0be85f631f576d8e2cfa6ae40ef1ada16f17 /scripts | |
| parent | 5991f8158084d078d4204c7a28d568ffbc962ab1 (diff) | |
kbuild: Fix 'make -j' problem
As pointed out by wli, all other compilation relies on fixdep to
exist already.
BTW, wli's benchmark numbers for the kallsyms speed-up patch:
-make -j bzImage 323.03s user 157.65s system 843% cpu 57.019 total
+make -j bzImage 270.02s user 147.01s system 1303% cpu 32.004 total
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile b/scripts/Makefile index 7301b039f96e..eca3f1661bf4 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -15,4 +15,4 @@ build-targets := $(host-progs) subdir- := lxdialog kconfig # fixdep is needed to compile other host programs -$(obj)/split-include $(obj)/docproc $(obj)/conmakehash: $(obj)/fixdep +$(addprefix $(obj)/,$(filter-out fixdep,$(host-progs))): $(obj)/fixdep |
