sync with trunks version

This commit is contained in:
Gunter Labes 2006-11-11 18:21:20 +00:00
parent fa8c7628e5
commit 9c5da8eb85

View File

@ -30,7 +30,10 @@ def parse_automake(filename, variable):
return sources
# read editor sources from automake file
editor_sources = parse_automake("src/Makefile.am", "wesnoth_editor_SOURCES")
editor_sources = parse_automake("src/Makefile.am", "libwesnoth_core_a_SOURCES")
editor_sources += parse_automake("src/Makefile.am", "wesnoth_editor_SOURCES")
# there shouldn't be doubles, but well, let's remove them :)
editor_sources = list(set(editor_sources))
env = Environment()