From f70659f460bd986d44859a92a90d9c2cd1de6f32 Mon Sep 17 00:00:00 2001 From: David Given Date: Wed, 13 Feb 2019 22:42:05 +0100 Subject: [PATCH] Don't do weird things if files starting with a hyphen exist in the build directory. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 95755a917..d8fa04026 100644 --- a/Makefile +++ b/Makefile @@ -72,7 +72,7 @@ BUILDSYSTEM = make endif build-file = $(BUILDDIR)/build.$(BUILDSYSTEM) -lua-files = $(shell find * -name 'build*.lua') +lua-files = $(shell find . -name 'build*.lua') our-lua = $(BUILDDIR)/lua # GNU make sets MAKECMDGOALS to the list of targets from the command -- 2.34.1