diff options
| author | Thierry Reding <thierry.reding@avionic-design.de> | 2011-12-21 23:22:54 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-12-24 10:23:32 +0100 | 
| commit | a747cc0a8c55d69a56a6db80a35cdb48c853447d (patch) | |
| tree | 9ad36b4115c538e36e48a967a261d6a43f323e32 | |
| parent | f46a945653146d62e8e8261f119642e302d704d2 (diff) | |
| download | olio-uboot-2014.01-a747cc0a8c55d69a56a6db80a35cdb48c853447d.tar.xz olio-uboot-2014.01-a747cc0a8c55d69a56a6db80a35cdb48c853447d.zip | |
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 <thierry.reding@avionic-design.de>
Signed-off-by: Tom Warren <twarren@nvidia.com>
| -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 eced3239f..e3b743553 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 |