Skip to content

Commit

Permalink
Inline a few variables
Browse files Browse the repository at this point in the history
  • Loading branch information
phst committed Mar 6, 2024
1 parent c051a4b commit f2c5d89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions emacs/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ def run(*command: str) -> None:
_rename(install / 'bin' / ('emacs' + exe_suffix), install / 'emacs.exe')
shared = _glob_unique(install / 'share' / 'emacs' / '[0-9]*')
_rename(shared / 'etc', install / 'etc')
libexec = install / 'libexec'
dump = _glob_unique(libexec / 'emacs' / '*' / '*' / 'emacs*.pdmp')
_rename(dump, install / 'emacs.pdmp')
_rename(
_glob_unique(install / 'libexec' / 'emacs' / '*' / '*' / 'emacs*.pdmp'),
install / 'emacs.pdmp')
lisp = _rename(shared / 'lisp', install / 'lisp')
# Delete source files that have a corresponding compiled file, as these
# files don’t work well with Coverage (see
Expand Down

0 comments on commit f2c5d89

Please sign in to comment.