]> git.mdlowis.com Git - archive/dlang-scm.git/commitdiff
Fixed issue in makefile where the find command was failing to find the source files
authorMike D. Lowis <mike@mdlowis.com>
Mon, 23 Jul 2012 23:24:21 +0000 (19:24 -0400)
committerMike D. Lowis <mike@mdlowis.com>
Mon, 23 Jul 2012 23:24:21 +0000 (19:24 -0400)
Makefile

index 0b5de0dfe3e15106878b4da7a53558e60a73855d..cb0d27955227a5cbd1ce4e5c7d91d235cae20afc 100644 (file)
--- 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
 #---------------------------