From: Mauro Rossi Date: Sat, 10 Oct 2020 12:48:22 +0000 (+0200) Subject: android: util: Move xxd.py to util X-Git-Tag: upstream/21.0.0~4369 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=002a23efb423132889385f7346ed5963ac3fe775;p=platform%2Fupstream%2Fmesa.git 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: --- diff --git a/src/compiler/Android.glsl.gen.mk b/src/compiler/Android.glsl.gen.mk index a32c4ca..f654c86 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 > $@