Skip to content

Commit

Permalink
Add handling for emacs jit files
Browse files Browse the repository at this point in the history
emacs jit files are dynamically generated names that are under a path
like /usr/libexec/emacs/$version/$arch/emacs-$hash.pdmp. Collect
these (though there is only 1 per build at this time) files under a
single glob to avoid needing to account for the filename changing
between builds.

Signed-off-by: William Douglas <william.douglas@intel.com>
  • Loading branch information
bryteise committed Nov 12, 2024
1 parent e822d6e commit ca45282
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions autospec/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ def push_file(self, filename, pkg_name):
(r"^/usr/lib32/lib(asm|dw|elf)-[0-9.]+\.so", "lib32"),
(r"^/usr/lib64/haswell/[a-zA-Z0-9._+-]*\.so\.", "lib"),
(r"^/usr/lib64/gobject-introspection/", "lib"),
(r"^/usr/libexec/emacs/", "libexec", "/usr/libexec/emacs/*"),
(r"^/usr/libexec/", "libexec"),
(r"^/usr/bin/", "bin"),
(r"^/usr/sbin/", "bin"),
Expand Down

0 comments on commit ca45282

Please sign in to comment.