From: Mike D. Lowis Date: Mon, 23 Jul 2012 23:24:21 +0000 (-0400) Subject: Fixed issue in makefile where the find command was failing to find the source files X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=ec57d5dcc4638f7c9ef0f2ae7fa1e893ef2b94f1;p=archive%2Fdlang-scm.git Fixed issue in makefile where the find command was failing to find the source files --- 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 #---------------------------