Android: fix build ordering of subdirectories
authorRob Herring <robh@kernel.org>
Thu, 28 Apr 2016 19:02:01 +0000 (14:02 -0500)
committerEmil Velikov <emil.l.velikov@gmail.com>
Sun, 1 May 2016 11:31:28 +0000 (12:31 +0100)
Different versions of make behave differently in whether $(wildcard) sorts
the results or not. The Android build now explicitly sorts
all-named-subdir-makefiles which breaks the build because src/gallium
must be included after src/mesa/drivers/dri.

The Android build system doesn't support doing "include $(call
all-named-subdir-makefiles,...)" twice, so rework things by generating
the included makefile list and including them in 2 steps.

Signed-off-by: Rob Herring <robh@kernel.org>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Android.mk

index aa4350f0a776c1cac9c6e0ffbebc255908eb5ed7..bd42bc6f4a9ec889c7572263f4c1c0420f781d36 100644 (file)
@@ -96,10 +96,12 @@ SUBDIRS := \
        src/egl \
        src/mesa/drivers/dri
 
+INC_DIRS := $(call all-named-subdir-makefiles,$(SUBDIRS))
+
 ifeq ($(strip $(MESA_BUILD_GALLIUM)),true)
-SUBDIRS += src/gallium
+INC_DIRS += $(call all-named-subdir-makefiles,src/gallium)
 endif
 
-include $(call all-named-subdir-makefiles,$(SUBDIRS))
+include $(INC_DIRS)
 
 endif