From 59e133d3bc7c3b7079356cb1a9acdd11521dccdf Mon Sep 17 00:00:00 2001 From: James Shubin Date: Tue, 5 Mar 2024 13:47:29 -0500 Subject: [PATCH] make: Find on all mcl files We forgot to port this line when we moved the core package up one directory. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d9091bb6..a8b5d3a7 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ SHELL = /usr/bin/env bash # a large amount of output from this `find`, can cause `make` to be much slower! GO_FILES := $(shell find * -name '*.go' -not -path 'old/*' -not -path 'tmp/*') -MCL_FILES := $(shell find lang/funcs/ -name '*.mcl' -not -path 'old/*' -not -path 'tmp/*') +MCL_FILES := $(shell find lang/ -name '*.mcl' -not -path 'old/*' -not -path 'tmp/*') SVERSION := $(or $(SVERSION),$(shell git describe --match '[0-9]*\.[0-9]*\.[0-9]*' --tags --dirty --always)) VERSION := $(or $(VERSION),$(shell git describe --match '[0-9]*\.[0-9]*\.[0-9]*' --tags --abbrev=0))