annotate nt/installer/Wise/files.py @ 776:79940b592197
[xemacs-hg @ 2002-03-15 07:43:14 by ben]
.cvsignore: ignore .tmp files that are getting auto-created by VC.
Makefile.in.in: Use -no-packages to avoid problems with package files shadowing
core files (e.g. unicode.el in mule-ucs).
alloc.c, emacs.c, lisp.h: add new -no-packages. make sure list of args for sorting is
actually correct. clean up arg parsing code.
xemacs.mak: Use -no-packages to avoid problems with package files shadowing
core files (e.g. unicode.el in mule-ucs).
Makefile: Use -no-packages to avoid problems with package files shadowing
core files (e.g. unicode.el in mule-ucs).
mule\chinese.el, mule\japan-util.el: fix warnings.
behavior-defs.el: fix errors with require.
bytecomp-runtime.el: add new funs {when,and}-{f}boundp, clean up docs.
cus-edit.el: pretty-print values.
dump-paths.el, find-paths.el, startup.el, setup-paths.el: fix problems/inconsistencies parsing options. support new
-no-packages option. merge code duplication in dump-paths and
startup.
lisp-mode.el: indent macrolet and labels correctly. update comments about
lisp-indent-function. flet already handled in cl.
apropos.el, auto-save.el, buff-menu.el, cl-extra.el, dragdrop.el, faces.el, files.el, fill.el, font-lock.el, font.el, gtk-faces.el, gui.el, help.el, hyper-apropos.el, info.el, isearch-mode.el, keymap.el, lisp-mnt.el, mouse.el, package-admin.el, package-get.el, printer.el, process.el, resize-minibuffer.el, simple.el, toolbar-items.el, wid-edit.el, win32-native.el: fix warnings.
very-early-lisp.el: update docs.
mule\chinese.el, mule\japan-util.el: fix warnings.
mule\chinese.el, mule\japan-util.el: fix warnings.
behavior-defs.el: fix errors with require.
bytecomp-runtime.el: add new funs {when,and}-{f}boundp, clean up docs.
cus-edit.el: pretty-print values.
dump-paths.el, find-paths.el, startup.el, setup-paths.el: fix problems/inconsistencies parsing options. support new
-no-packages option. merge code duplication in dump-paths and
startup.
lisp-mode.el: indent macrolet and labels correctly. update comments about
lisp-indent-function. flet already handled in cl.
apropos.el, auto-save.el, buff-menu.el, cl-extra.el, dragdrop.el, faces.el, files.el, fill.el, font-lock.el, font.el, gtk-faces.el, gui.el, help.el, hyper-apropos.el, info.el, isearch-mode.el, keymap.el, lisp-mnt.el, mouse.el, package-admin.el, package-get.el, printer.el, process.el, resize-minibuffer.el, simple.el, toolbar-items.el, wid-edit.el, win32-native.el: fix warnings.
very-early-lisp.el: update docs.
mule\chinese.el, mule\japan-util.el: fix warnings.
Makefile.in.in: Use -no-packages to avoid problems with package files shadowing
core files (e.g. unicode.el in mule-ucs).
Makefile.in.in: Use -no-packages to avoid problems with package files shadowing
core files (e.g. unicode.el in mule-ucs).
author |
ben |
date |
Fri, 15 Mar 2002 07:43:43 +0000 |
parents |
74fd4e045ea6 |
children |
|
rev |
line source |
398
|
1 import os
|
|
2 import dirs
|
|
3
|
|
4 def listdir_recursive(basedir):
|
|
5 ret = []
|
|
6 for f in os.listdir(basedir):
|
|
7 if os.path.isfile(basedir+"\\"+f):
|
|
8 ret.append(f)
|
|
9 elif os.path.isdir(basedir+"\\"+f):
|
|
10 for f1 in listdir_recursive(basedir+"\\"+f):
|
|
11 ret.append(f+"\\"+f1)
|
|
12 return ret
|
|
13
|
|
14 install = []
|
|
15
|
|
16 for f in os.listdir(dirs.source+"\\lib-src"):
|
|
17 if f == "DOC" or f[-4:]==".exe":
|
|
18 install.append((f,dirs.source+"\\lib-src",dirs.bin_dst))
|
|
19
|
|
20
|
|
21 for f in ['runemacs.exe', 'xemacs.exe']:
|
|
22 install.append((f,dirs.source+"\\src",dirs.bin_dst))
|
|
23
|
|
24 for f in listdir_recursive(dirs.source+"\\lisp"):
|
|
25 install.append((f,dirs.source+"\\lisp",dirs.lisp_dst))
|
|
26
|
|
27 for f in listdir_recursive(dirs.source+"\\etc"):
|
|
28 install.append((f,dirs.source+"\\etc",dirs.etc_dst))
|
|
29
|
|
30
|
|
31 for f in os.listdir(dirs.source+"\\info"):
|
|
32 install.append((f,dirs.source+"\\info",dirs.info_dst))
|
|
33
|
|
34
|
|
35
|
|
36
|