diff options
| author | Thierry Reding <[email protected]> | 2011-12-21 23:22:54 +0000 |
|---|---|---|
| committer | Albert ARIBAUD <[email protected]> | 2011-12-24 10:23:32 +0100 |
| commit | a747cc0a8c55d69a56a6db80a35cdb48c853447d (patch) | |
| tree | 9ad36b4115c538e36e48a967a261d6a43f323e32 | |
| parent | f46a945653146d62e8e8261f119642e302d704d2 (diff) | |
tegra2: Optimize out-of-tree build for Ventana.
As proposed by Mike Frysinger, mkdir can take more than one argument.
Instead of spawning two processes, create both the common and seaboard
directories in one go.
Signed-off-by: Thierry Reding <[email protected]>
Signed-off-by: Tom Warren <[email protected]>
| -rw-r--r-- | board/nvidia/ventana/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/board/nvidia/ventana/Makefile b/board/nvidia/ventana/Makefile index eced3239f45..e3b7435530b 100644 --- a/board/nvidia/ventana/Makefile +++ b/board/nvidia/ventana/Makefile @@ -25,8 +25,7 @@ include $(TOPDIR)/config.mk ifneq ($(OBJTREE),$(SRCTREE)) -$(shell mkdir -p $(obj)../seaboard) -$(shell mkdir -p $(obj)../common) +$(shell mkdir -p $(obj)../common $(obj)../seaboard) endif LIB = $(obj)lib$(BOARD).o |
