From a57fe552e8109a25a10bf5cad510e467b0d39519 Mon Sep 17 00:00:00 2001 From: Nathaniel Wesley Filardo Date: Sat, 11 Aug 2018 12:50:12 +0100 Subject: [PATCH] app/lua/luac_cross: WRAPCC CC here, too (#2453) Not that Lua takes very long to compile, but allowing for ccache here should still help the builder(s) consume a little less time and power. --- app/lua/luac_cross/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lua/luac_cross/Makefile b/app/lua/luac_cross/Makefile index fe66c8b2..22f8a684 100644 --- a/app/lua/luac_cross/Makefile +++ b/app/lua/luac_cross/Makefile @@ -47,7 +47,7 @@ DEPS := $(SRC:%.c=$(ODIR)/%.d) CFLAGS = $(CCFLAGS) $(DEFINES) $(EXTRA_CCFLAGS) $(STD_CFLAGS) $(INCLUDES) DFLAGS = $(CCFLAGS) $(DDEFINES) $(EXTRA_CCFLAGS) $(STD_CFLAGS) $(INCLUDES) -CC := gcc +CC := $(WRAPCC) gcc ECHO := echo