From 29e0a4b5b1f3b5661f56f9fbecfc641801c4eefd Mon Sep 17 00:00:00 2001 From: briaguya Date: Thu, 2 Jun 2022 22:41:38 -0400 Subject: [PATCH] use single quotes in find command in makefile --- soh/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/soh/Makefile b/soh/Makefile index 74a112ecb..3a5281605 100644 --- a/soh/Makefile +++ b/soh/Makefile @@ -87,14 +87,14 @@ TEXTURE_FILES_OUT := $(foreach f,$(TEXTURE_FILES_PNG:.png=.inc.c),build/$f) \ $(foreach f,$(TEXTURE_FILES_JPG:.jpg=.jpg.inc.c),build/$f) \ CXX_FILES := \ - $(shell find soh -type f -name *.cpp) + $(shell find soh -type f -name '*.cpp') C_FILES := \ - $(shell find soh -type f -name *.c) \ - $(shell find src/boot -type f -name *.c) \ - $(shell find src/buffers -type f -name *.c) \ - $(shell find src/code -type f -name *.c) \ - $(shell find src/overlays -type f -name *.c) \ + $(shell find soh -type f -name '*.c') \ + $(shell find src/boot -type f -name '*.c') \ + $(shell find src/buffers -type f -name '*.c') \ + $(shell find src/code -type f -name '*.c') \ + $(shell find src/overlays -type f -name '*.c') \ src/libultra/gu/coss.c \ src/libultra/gu/guLookAt.c \ src/libultra/gu/guLookAtHilite.c \