fixed incorrect joining of substituted strings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23466 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2003-09-10 08:35:00 +00:00
parent 506c7b5b69
commit 5d38306bc2

View File

@ -129,8 +129,8 @@ def headersOnly(files):
def callback(cond, sources):
prf = suf = ''
if sources[0].isspace(): prefix=' '
if sources[-1].isspace(): suffix=' '
if sources[0].isspace(): prf=' '
if sources[-1].isspace(): suf=' '
retval = []
for s in sources.split():
if s.endswith('.h'):