From f7e41eb86c56cf506e7bad8e86c8cb0f49937fb5 Mon Sep 17 00:00:00 2001 From: kunitoki Date: Tue, 19 Feb 2013 12:13:53 +0100 Subject: [PATCH] - updated SConstruct --- SConstruct | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/SConstruct b/SConstruct index 8fbe3f4cb..6dbf81b54 100644 --- a/SConstruct +++ b/SConstruct @@ -671,13 +671,10 @@ def update_linux_project_files(): iterate_dirs(headers_content, source_content, d) headers_content.sort() - source_content.sort() - headers_content = ['HEADERS += \\'] + headers_content + ['',''] - source_content = ['SOURCES += \\'] + source_content + ['',''] - #files_content.append('../../SConstruct') - #files_content.append('../../Dependencies') + source_content.sort() + source_content = ['SOURCES += \\'] + source_content + ['',''] files_name = os.path.join('.', 'workspace', 'All.files') f = open(files_name, "w")