diff options
| author | Miles Bader | 2007-05-25 05:05:41 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-05-25 05:05:41 +0000 |
| commit | 779903bd6e149edae6131f84f2a1ac069ef50b2e (patch) | |
| tree | 3aed1ae75329d705bd13fa9a4b4bd1708d8013c7 /admin | |
| parent | e549150450fc7e406cc2876e9a03e7e7dd1569ea (diff) | |
| parent | c1587aff5527edb84ff15694c318aaabe9cc6d8d (diff) | |
| download | emacs-779903bd6e149edae6131f84f2a1ac069ef50b2e.tar.gz emacs-779903bd6e149edae6131f84f2a1ac069ef50b2e.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 771-772)
- Update from CVS
- Merge from emacs--rel--22
* emacs--rel--22 (patch 26-27)
- Update from CVS
- lisp/vc-hooks.el (vc-find-root): Fix file attribute test
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-210
Diffstat (limited to 'admin')
| -rwxr-xr-x | admin/nt/dump.bat | 2 | ||||
| -rwxr-xr-x | admin/nt/makedist.bat | 17 |
2 files changed, 11 insertions, 8 deletions
diff --git a/admin/nt/dump.bat b/admin/nt/dump.bat index b332e7471f6..49d83e24651 100755 --- a/admin/nt/dump.bat +++ b/admin/nt/dump.bat | |||
| @@ -10,8 +10,6 @@ ren emacs.exe emacs.exe.orig | |||
| 10 | 10 | ||
| 11 | :dump | 11 | :dump |
| 12 | rem Overwrites emacs.exe if still present | 12 | rem Overwrites emacs.exe if still present |
| 13 | mkdir ..\lib-src | ||
| 14 | copy fns* ..\lib-src | ||
| 15 | mkdir obj | 13 | mkdir obj |
| 16 | mkdir obj\i386 | 14 | mkdir obj\i386 |
| 17 | mkdir obj\etc | 15 | mkdir obj\etc |
diff --git a/admin/nt/makedist.bat b/admin/nt/makedist.bat index b160da93c4f..56fca7949fa 100755 --- a/admin/nt/makedist.bat +++ b/admin/nt/makedist.bat | |||
| @@ -25,8 +25,6 @@ rem along with GNU Emacs; see the file COPYING. If not, write to the | |||
| 25 | rem Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 25 | rem Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 26 | rem Boston, MA 02110-1301, USA. | 26 | rem Boston, MA 02110-1301, USA. |
| 27 | 27 | ||
| 28 | set ZIP=zip | ||
| 29 | |||
| 30 | if (%3) == () goto usage | 28 | if (%3) == () goto usage |
| 31 | if not (%4) == () goto %4 | 29 | if not (%4) == () goto %4 |
| 32 | 30 | ||
| @@ -34,18 +32,25 @@ if not (%4) == () goto %4 | |||
| 34 | 32 | ||
| 35 | echo Create full bin distribution | 33 | echo Create full bin distribution |
| 36 | copy %3\README.W32 emacs-%1\README.W32 | 34 | copy %3\README.W32 emacs-%1\README.W32 |
| 37 | 35 | rem Info-ZIP zip seems to be broken on Windows. | |
| 38 | %ZIP% -x emacs.mdp -x *.pdb -x *.opt -x *~ -x CVS -9 emacs-%1/BUGS emacs-%1/README emacs-%1/README.W32 emacs-%1/bin emacs-%1/etc emacs-%1/info emacs-%1/lisp %2-bin-i386.zip | 36 | rem It always writes to zip.zip and treats the zipfile argument as one |
| 37 | rem of the files to go in it. | ||
| 38 | rem zip -9 -r %2-bin-i386 emacs-%1/BUGS emacs-%1/README emacs-%1/README.W32 emacs-%1/bin emacs-%1/etc emacs-%1/info emacs-%1/lisp emacs-%1/leim -x emacs.mdp *.pdb *.opt *~ CVS | ||
| 39 | 7z a -tZIP -mx=9 -xr!emacs.mdp -xr!*.pdb -xr!*.opt -xr!*~ -xr!CVS -xr!.arch-inventory %2-bin-i386.zip emacs-%1/BUGS emacs-%1/README emacs-%1/README.W32 emacs-%1/bin emacs-%1/etc emacs-%1/info emacs-%1/lisp emacs-%1/leim | ||
| 39 | del emacs-%1\README.W32 | 40 | del emacs-%1\README.W32 |
| 40 | if not (%4) == () goto end | 41 | if not (%4) == () goto end |
| 41 | 42 | ||
| 42 | :barebin | 43 | :barebin |
| 43 | |||
| 44 | echo Create archive with just the basic binaries and generated files | 44 | echo Create archive with just the basic binaries and generated files |
| 45 | echo (the user needs to unpack the full source distribution for | 45 | echo (the user needs to unpack the full source distribution for |
| 46 | echo everything else) | 46 | echo everything else) |
| 47 | copy %3\README.W32 emacs-%1\README.W32 | 47 | copy %3\README.W32 emacs-%1\README.W32 |
| 48 | %ZIP% -9 emacs-%1/README.W32 emacs-%1/bin emacs-%1/etc/DOC emacs-%1/etc/DOC-X %2-barebin-i386.zip | 48 | copy %3\dump.bat emacs-%1\bin\dump.bat |
| 49 | rem Info-ZIP zip seems to be broken on Windows. | ||
| 50 | rem It always writes to zip.zip and treats the zipfile argument as one | ||
| 51 | rem of the files to go in it. | ||
| 52 | rem zip -9 -r %2-barebin-i386.zip emacs-%1/README.W32 emacs-%1/bin emacs-%1/etc/DOC-X | ||
| 53 | 7z a -tZIP -mx=9 %2-barebin-i386.zip emacs-%1/README.W32 emacs-%1/bin emacs-%1/etc/DOC-X | ||
| 49 | del emacs-%1\README.W32 | 54 | del emacs-%1\README.W32 |
| 50 | if not (%4) == () goto end | 55 | if not (%4) == () goto end |
| 51 | 56 | ||