Skip to content

Commit

Permalink
Merge branch 'pack-linkers' into 'master'
Browse files Browse the repository at this point in the history
Conflicts:
	reprozip/reprozip/tracer/trace.py
  • Loading branch information
remram44 committed Jun 27, 2014
2 parents 3c76123 + a2d815f commit 1b98b17
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions reprozip/reprozip/tracer/trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,14 @@ def get_files(database):

files = {}

# Adds dynamic linkers
for libdir in (Path('/lib'), Path('/lib64')):
if libdir.exists():
for linker in libdir.listdir('*ld-linux*'):
f = TracedFile(linker)
f.read()
files[f.path] = f

# Adds executed files
exec_cursor = conn.cursor()
executed_files = exec_cursor.execute(
Expand Down

0 comments on commit 1b98b17

Please sign in to comment.