From ec57d5dcc4638f7c9ef0f2ae7fa1e893ef2b94f1 Mon Sep 17 00:00:00 2001 From: "Mike D. Lowis" Date: Mon, 23 Jul 2012 19:24:21 -0400 Subject: [PATCH] Fixed issue in makefile where the find command was failing to find the source files --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0b5de0d..cb0d279 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ # Utility Function Definitions #----------------------------- # Function for generating an file list -flist = $(shell env find $(1) -name *.$(strip $(2)) -print) +flist = $(shell env find $(1) -name "*.$(strip $(2))" -print) # Project and Artifact Names #--------------------------- -- 2.52.0