diff options
author | Emil Velikov <[email protected]> | 2015-03-28 18:23:01 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-04-22 15:52:02 +0100 |
commit | 669cfc267a1102ff903b3e562f9aa45a410e0312 (patch) | |
tree | 85d38d2482eb001e56fe744047364404f23ff581 /src/mesa/Android.libmesa_dricore.mk | |
parent | 64171c2d24196801cbb5b549fdc90743c42e3257 (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]>
Diffstat (limited to 'src/mesa/Android.libmesa_dricore.mk')
-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 c2a4c288b75..45a385c2540 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 |