Skip to content

Commit

Permalink
Use correct variable
Browse files Browse the repository at this point in the history
Bug introduced in da6154c
when "sources" was renamed to "objs".
  • Loading branch information
timj committed Aug 11, 2017
1 parent b43acff commit 60dc30f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/sconsUtils/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def SourcesForSharedLibrary(self, files):
obj = self.SharedObject(ccFile)
objs.append(obj)

objs = sorted(state.env.Flatten(sources), key=str)
objs = sorted(state.env.Flatten(objs), key=str)
return objs


Expand Down

0 comments on commit 60dc30f

Please sign in to comment.