From 002a23efb423132889385f7346ed5963ac3fe775 Mon Sep 17 00:00:00 2001 From: Mauro Rossi Date: Sat, 10 Oct 2020 14:48:22 +0200 Subject: [PATCH] android: util: Move xxd.py to util Android porting of gen rules as per 22ffc05266c6 ("util: Move xxd.py to util") Fixes the following building error: ninja: error: 'external/mesa/src/compiler/glsl/xxd.py', needed by 'out/target/product/x86_64/gen/STATIC_LIBRARIES/libmesa_glsl_intermediates/glsl/float64_glsl.h', missing and no known rule to make it Fixes: 22ffc05266c6 ("util: Move xxd.py to util") Signed-off-by: Mauro Rossi Reviewed-by: Jesse Natalie Part-of: --- src/compiler/Android.glsl.gen.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/Android.glsl.gen.mk b/src/compiler/Android.glsl.gen.mk index a32c4ca6a50..f654c869f83 100644 --- a/src/compiler/Android.glsl.gen.mk +++ b/src/compiler/Android.glsl.gen.mk @@ -102,6 +102,6 @@ $(intermediates)/glsl/ir_expression_operation_strings.h: $(LOCAL_PATH)/glsl/ir_e @mkdir -p $(dir $@) $(hide) $(MESA_PYTHON2) $< strings > $@ -$(intermediates)/glsl/float64_glsl.h: $(LOCAL_PATH)/glsl/xxd.py +$(intermediates)/glsl/float64_glsl.h: $(MESA_TOP)/src/util/xxd.py @mkdir -p $(dir $@) $(hide) $(MESA_PYTHON2) $< $(MESA_TOP)/src/compiler/glsl/float64.glsl $@ -n float64_source > $@