summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSuraj Das2017-02-15 10:13:00 -0600
committerSuraj Das2017-02-15 10:13:00 -0600
commit1f359ef0053dd60ff239ae5d87d53447757d08c4 (patch)
treeeaf765d706d4df4cb1414ee01a4f3eec2a35aadf
parent1fe0d1d8916d8fdd30c078287c09a670b1d0c755 (diff)
downloadutils-1f359ef0053dd60ff239ae5d87d53447757d08c4.tar.gz
utils-1f359ef0053dd60ff239ae5d87d53447757d08c4.tar.xz
utils-1f359ef0053dd60ff239ae5d87d53447757d08c4.zip
fixed naming convention for *.asm include
-rw-r--r--profiling/src/Module.xs6
1 files changed, 3 insertions, 3 deletions
diff --git a/profiling/src/Module.xs b/profiling/src/Module.xs
index be7abf6..45fc477 100644
--- a/profiling/src/Module.xs
+++ b/profiling/src/Module.xs
@@ -68,7 +68,7 @@ function modBuild()
68 Pkg.otherFiles[Pkg.otherFiles.length++] = mkFiles[k]; 68 Pkg.otherFiles[Pkg.otherFiles.length++] = mkFiles[k];
69 69
70 /* Add all the .asm files to the release package. */ 70 /* Add all the .asm files to the release package. */
71 var mkFiles = libUtility.listAllFiles (".asm", "src", true); 71 var testFiles = libUtility.listAllFiles (".asm", "src", true);
72 for (var k = 0 ; k < mkFiles.length; k++) 72 for (var k = 0 ; k < testFiles.length; k++)
73 Pkg.otherFiles[Pkg.otherFiles.length++] = mkFiles[k]; 73 Pkg.otherFiles[Pkg.otherFiles.length++] = testFiles[k];
74} 74}