diff options
author | Emil Velikov <[email protected]> | 2015-03-28 18:23:01 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-04-22 16:17:03 +0100 |
commit | 0f5ec7250d3e19eda1121f1bf3f340aedcc26dc5 (patch) | |
tree | b171f0dc747367192cdd3970500908d34e61cfda /src/mesa | |
parent | a2785a23e694df2213c9afe6d6f062cc366d24f1 (diff) |
android: mesa: fix the path of the SSE4_1 optimisations
Commit dd6f641303c(mesa: Build with subdir-objects.) removed the SRCDIR
variable, but forgot to update all references of it.
v2: Fix path - must be relative to LOCAL_PATH. (Chih-Wei)
Cc: "10.5" <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Chih-Wei Huang <[email protected]>
(cherry picked from commit 669cfc267a1102ff903b3e562f9aa45a410e0312)
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/Android.libmesa_dricore.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/Android.libmesa_dricore.mk b/src/mesa/Android.libmesa_dricore.mk index c0770caf262..c6840172913 100644 --- a/src/mesa/Android.libmesa_dricore.mk +++ b/src/mesa/Android.libmesa_dricore.mk @@ -49,8 +49,8 @@ endif # MESA_ENABLE_ASM ifeq ($(ARCH_X86_HAVE_SSE4_1),true) LOCAL_SRC_FILES += \ - $(SRCDIR)main/streaming-load-memcpy.c \ - $(SRCDIR)main/sse_minmax.c + main/streaming-load-memcpy.c \ + mesa/main/sse_minmax.c LOCAL_CFLAGS := -msse4.1 endif |