Skip to content

Commit

Permalink
Correctly calculate dependencies of a .rel file when the files are sp…
Browse files Browse the repository at this point in the history
…read on various directories.

darcs-hash:20061130042856-de23e-09203d65f5948a0bd9bf6a1347b3a5f4ff12a325.gz
  • Loading branch information
pupeno committed Nov 30, 2006
1 parent 4c4514d commit fa3b23f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erlang.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def appModules(node, env, path):
# When there are more than one application in a project, since we are scanning all paths against all files, we might end up with more dependencies that really exists. The worst is that we'll get recompilation of a file that didn't really needed it.
for path in paths:
for moduleName in moduleNames:
modules.append(moduleName + ".beam")
modules.append(os.path.abspath(path + moduleName +".beam"))
return modules

relScanner = Scanner(function = relModules,
Expand Down

0 comments on commit fa3b23f

Please sign in to comment.