Mercurial > hg > xemacs-beta
view nt/installer/Wise/filelist.py @ 3309:ad7894a4ab41
[xemacs-hg @ 2006-03-27 21:00:01 by james]
Fix ALSA detection by detecting a header file with no dependencies. See
xemacs-patches message with ID <m3vetzvc39.fsf@jerrypc.cs.usu.edu>.
author | james |
---|---|
date | Mon, 27 Mar 2006 21:00:13 +0000 |
parents | 74fd4e045ea6 |
children |
line wrap: on
line source
import os import dirs import string def listdir_recursive(basedir): ret = [] for f in os.listdir(basedir): if os.path.isfile(basedir+"\\"+f): ret.append(f) elif os.path.isdir(basedir+"\\"+f): for f1 in listdir_recursive(basedir+"\\"+f): ret.append(f+"\\"+f1) return ret all = [] for f in listdir_recursive(dirs.installed): if string.find(f,'CVS')>=0: continue all.append((f, dirs.installed, dirs.dst))