1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Update Build files for Emacs-27

* admin/nt/dist-build/README-windows-binaries,
  admin/nt/dist-build/build-dep-zips.py,
  admin/nt/dist-build/build-zips.sh: Update Version
This commit is contained in:
Phillip Lord 2017-11-27 22:13:41 +00:00
parent 91a7f934ac
commit 405b9cb7c3
3 changed files with 7 additions and 6 deletions

View file

@ -26,7 +26,7 @@ import re
from subprocess import check_output
## Constants
EMACS_MAJOR_VERSION="26"
EMACS_MAJOR_VERSION="27"
## Options
@ -103,7 +103,8 @@ def gather_deps(deps, arch, directory):
## And package them up
os.chdir(directory)
print("Zipping: {}".format(arch))
check_output_maybe("zip -9r ../../emacs-26-{}-deps.zip *".format(arch),
check_output_maybe("zip -9r ../../emacs-{}-{}-deps.zip *"
.format(EMACS_MAJOR_VERSION, arch),
shell=True)
os.chdir("../../")