From bd39f01975f88840173ece828824592f29b2885b Mon Sep 17 00:00:00 2001 From: Thiago Farina Date: Tue, 20 Dec 2011 19:06:01 -0200 Subject: [PATCH] Put the list of core source files in alphabetical order. Signed-off-by: Thiago Farina --- configure.py | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/configure.py b/configure.py index 8bb5d24..6111588 100755 --- a/configure.py +++ b/configure.py @@ -156,9 +156,18 @@ n.build(src('depfile_parser.cc'), 're2c', src('depfile_parser.in.cc')) n.newline() n.comment('Core source files all build into ninja library.') -for name in ['build', 'build_log', 'clean', 'edit_distance', 'eval_env', - 'graph', 'graphviz', 'parsers', 'util', 'depfile_parser', - 'disk_interface', 'state']: +for name in ['build', + 'build_log', + 'clean', + 'depfile_parser', + 'disk_interface', + 'edit_distance', + 'eval_env', + 'graph', + 'graphviz', + 'parsers', + 'state', + 'util']: objs += cxx(name) if platform == 'mingw': objs += cxx('subprocess-win32') -- 2.7.4