diff options
| author | Paul Eggert | 2017-11-02 21:02:12 -0700 |
|---|---|---|
| committer | Paul Eggert | 2017-11-02 21:02:12 -0700 |
| commit | aa7542467238b06ed056054965ba444595b85453 (patch) | |
| tree | 3071c15ff777ef5727ccd254d9ddbf513a06c0cc /admin | |
| parent | 5fcfdf433d74e8ecb35f86fdc071ce11ca0b0364 (diff) | |
| parent | a87ce5c4b41ca8146c764b1186a6162c069b1933 (diff) | |
| download | emacs-aa7542467238b06ed056054965ba444595b85453.tar.gz emacs-aa7542467238b06ed056054965ba444595b85453.zip | |
Merge from origin/emacs-26
a87ce5c4b4 * src/lisp.h (GCALIGNED): Clarify comment (Bug#29040).
8a31e9993f ; etc/NEWS: Add cpp-message-min-time-interval. (Bug#28961)
ac0bb9a192 Improve the doc of eshell-cmpl-* custom variables (Bug#25069)
36400c7dc9 Fix mouse-scrollbar offset on GNUstep and old macOS (bug#2...
04bc1410c2 Merge from Gnulib
6b08ad5263 Fix alignment portability problems
a9f8706fa8 Fix completion of colon after CSS property (Bug#29056)
9031dec527 ; * src/alloc.c (sweep_symbols): Fix last change.
fdd3dcfa4e * src/alloc.c (sweep_symbols): Tweak last change
27964af438 In frame parameters documentation mention desktop saving/r...
1bd4e7c243 ; Fix typo in ChangeLog.3
4182a60d31 Don't have frameset save the 'client' parameter (Bug#29067)
9d31a97092 ; Spelling fixes
460a25f212 Handle generic variables in cl-defgeneric Edebug spec
dc0a25c2f9 Give a more sensible message if file-attributes fails (Bug...
8453423c7c Avoid wrong value from file-attributes on Linux kernel bef...
70621e2571 Fix customization of debugger-print-function (Bug#29077)
# Conflicts:
# etc/NEWS
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/nt/dist-build/README-scripts | 8 | ||||
| -rwxr-xr-x | admin/nt/dist-build/build-dep-zips.py | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/admin/nt/dist-build/README-scripts b/admin/nt/dist-build/README-scripts index a20099e4eb6..1c62a866724 100644 --- a/admin/nt/dist-build/README-scripts +++ b/admin/nt/dist-build/README-scripts | |||
| @@ -3,19 +3,19 @@ Distribution Build Scripts for Windows | |||
| 3 | 3 | ||
| 4 | The scripts are used to build the binary distribution zip files for windows. | 4 | The scripts are used to build the binary distribution zip files for windows. |
| 5 | 5 | ||
| 6 | File System Organisation | 6 | File System Organization |
| 7 | ------------------------ | 7 | ------------------------ |
| 8 | 8 | ||
| 9 | 9 | ||
| 10 | They are relatively strict about the file system organisation. In | 10 | They are relatively strict about the file system organization. In |
| 11 | general, they should work across several more than just the version of | 11 | general, they should work across several more than just the version of |
| 12 | Emacs they come with, as the dependencies of Emacs change relatively slowly. | 12 | Emacs they come with, as the dependencies of Emacs change relatively slowly. |
| 13 | 13 | ||
| 14 | The file system needs to be organised like so: | 14 | The file system needs to be organized like so: |
| 15 | 15 | ||
| 16 | ~/emacs-build/git | 16 | ~/emacs-build/git |
| 17 | 17 | ||
| 18 | Contains a checkout of the Emacs git repository, organised according | 18 | Contains a checkout of the Emacs git repository, organized according |
| 19 | to branches, with git worktree | 19 | to branches, with git worktree |
| 20 | 20 | ||
| 21 | ~/emacs-build/git/emacs-$branch | 21 | ~/emacs-build/git/emacs-$branch |
diff --git a/admin/nt/dist-build/build-dep-zips.py b/admin/nt/dist-build/build-dep-zips.py index 33bc4b586c9..9573bf3abcc 100755 --- a/admin/nt/dist-build/build-dep-zips.py +++ b/admin/nt/dist-build/build-dep-zips.py | |||
| @@ -61,7 +61,7 @@ mingw-w64-x86_64-xpm-nox | |||
| 61 | mingw-w64-x86_64-lcms2'''.split() | 61 | mingw-w64-x86_64-lcms2'''.split() |
| 62 | 62 | ||
| 63 | # Get a list of all dependencies needed for packages mentioned above. | 63 | # Get a list of all dependencies needed for packages mentioned above. |
| 64 | # Run `pactree -lu' for each elment of $PKG_REQ | 64 | # Run `pactree -lu' for each element of $PKG_REQ. |
| 65 | pkgs = set() | 65 | pkgs = set() |
| 66 | for x in PKG_REQ: | 66 | for x in PKG_REQ: |
| 67 | pkgs.update( | 67 | pkgs.update( |
| @@ -125,7 +125,7 @@ def gather_source(deps): | |||
| 125 | ## mpc, termcap, xpm -- has x86_64, and i686 versions | 125 | ## mpc, termcap, xpm -- has x86_64, and i686 versions |
| 126 | 126 | ||
| 127 | ## This needs to have been run first at the same time as the | 127 | ## This needs to have been run first at the same time as the |
| 128 | ## system was udpated. | 128 | ## system was updated. |
| 129 | os.mkdir("emacs-src") | 129 | os.mkdir("emacs-src") |
| 130 | os.chdir("emacs-src") | 130 | os.chdir("emacs-src") |
| 131 | 131 | ||