summaryrefslogtreecommitdiff
path: root/admin/admin.el
diff options
context:
space:
mode:
authorChristoph Scholtes <cschol2112@gmail.com>2010-07-24 15:35:31 +0200
committerJuanma Barranquero <lekktu@gmail.com>2010-07-24 15:35:31 +0200
commite3aef5c688f5c4a471f92494c0b2599574140658 (patch)
tree91c8c77a8961c818b85b9537e816b0befd996d1f /admin/admin.el
parentc4cc8b9a23253c12c5cee0be1363343fe019bf20 (diff)
downloademacs-e3aef5c688f5c4a471f92494c0b2599574140658.tar.gz
New make target for Windows platform: make dist (bug#6602)
* admin/admin.el: Write version number to nt/makefile.w32-in. * admin/nt/makedist.bat: Remove; replaced with `zipdist.bat' in the nt/ directory. * admin/nt/README.W32: Relocate to nt/ directory. * etc/NEWS: Document new --distfiles configure.bat option and `dist' make target on Windows. * nt/INSTALL: Document new dist target and add section about creating binary distributions. * nt/configure.bat: New parameter `--distfiles'. * nt/makefile.w32-in: Add version number, new target `dist'. Add new target `install-shortcuts'. * nt/zipdist.bat: New file; create zipped binary distribution, replaces admin/nt/makedist.bat.
Diffstat (limited to 'admin/admin.el')
-rw-r--r--admin/admin.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/admin/admin.el b/admin/admin.el
index f2cf008f475..51bbecf4c57 100644
--- a/admin/admin.el
+++ b/admin/admin.el
@@ -95,6 +95,9 @@ Root must be the root of an Emacs source tree."
(set-version-in-file root "lib-src/makefile.w32-in" version
(rx (and "VERSION" (0+ space) "=" (0+ space)
(submatch (1+ (in "0-9."))))))
+ (set-version-in-file root "nt/makefile.w32-in" version
+ (rx (and "VERSION" (0+ space) "=" (0+ space)
+ (submatch (1+ (in "0-9."))))))
;; nt/emacs.rc also contains the version number, but in an awkward
;; format. It must contain four components, separated by commas, and
;; in two places those commas are followed by space, in two other