From 35476722166aa47e4887eda70ae0385a6bf24c54 Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 18 Oct 2021 04:46:48 +0100 Subject: [PATCH] Make sure to call res2c.py with python3 Signed-off-by: falkTX --- plugins/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Makefile b/plugins/Makefile index c2a316f..689d08f 100644 --- a/plugins/Makefile +++ b/plugins/Makefile @@ -257,7 +257,7 @@ $(TARGET): $(PLUGIN_OBJS) $(BUILD_DIR)/%.bin.o: % res2c.py -@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)" @echo "Generating and Compiling $<" - $(shell ./res2c.py $< | $(CC) -x c - $(BUILD_C_FLAGS) -c -o $@) + $(shell python3 ./res2c.py $< | $(CC) -x c - $(BUILD_C_FLAGS) -c -o $@) $(BUILD_DIR)/plugins.cpp.o: plugins.cpp -@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"