From 09fbde830f30c8a316710ef827c323be8e43bc7c Mon Sep 17 00:00:00 2001 From: John Stultz Date: Tue, 10 Mar 2020 03:37:44 +0000 Subject: [PATCH] panfrost: Move pan_afbc.c file to the the right Makefile.source file It seems pan_afbc.c was added to the wrong Makefile.sources file. So fix this, so we don't run into build issues with mesa/master trying to build under AOSP. Signed-off-by: John Stultz Part-of: --- src/gallium/drivers/panfrost/Makefile.sources | 1 - src/panfrost/Makefile.sources | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/panfrost/Makefile.sources b/src/gallium/drivers/panfrost/Makefile.sources index eea6605d040..1a465d46f58 100644 --- a/src/gallium/drivers/panfrost/Makefile.sources +++ b/src/gallium/drivers/panfrost/Makefile.sources @@ -3,7 +3,6 @@ C_SOURCES := \ nir/nir_lower_blend.h \ nir/nir_lower_framebuffer.c \ \ - pan_afbc.c \ pan_allocate.c \ pan_allocate.h \ pan_assemble.c \ diff --git a/src/panfrost/Makefile.sources b/src/panfrost/Makefile.sources index 4f1cdc63905..fd58252345a 100644 --- a/src/panfrost/Makefile.sources +++ b/src/panfrost/Makefile.sources @@ -14,6 +14,7 @@ bifrost_FILES := \ bifrost/disassemble.h encoder_FILES := \ + encoder/pan_afbc.c \ encoder/pan_attributes.c \ encoder/pan_encoder.h \ encoder/pan_invocation.c \ -- 2.30.2