stabilize make conf output from erich, bug 1242

This commit is contained in:
Chris PeBenito 2006-04-17 18:06:36 +00:00
parent abc73a7764
commit 86e869ed1c
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,4 @@
- Patch to stabilize modules.conf `make conf` output, from Erich Schubert.
- Move xconsole_device_t from devices to xserver since it is
not actually a device, it is a named pipe.
- Handle nonexistant .fc and .if files in devel Makefile by

View File

@ -214,7 +214,9 @@ def getLayerXML (layerName, directories):
# For each module file in the layer, add its XML.
for directory in directories:
for module in glob.glob("%s/*.if" % directory):
modules = glob.glob("%s/*.if" % directory)
modules.sort()
for module in modules:
layer_buf += getModuleXML(module)
layer_buf.append("</layer>\n")