From 5d38306bc2d2c8329cc3408e227cf3c01feaac42 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Wed, 10 Sep 2003 08:35:00 +0000 Subject: [PATCH] fixed incorrect joining of substituted strings git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23466 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- build/bakefiles/wxwin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/bakefiles/wxwin.py b/build/bakefiles/wxwin.py index 17b8a42b2b..bb985a1a39 100644 --- a/build/bakefiles/wxwin.py +++ b/build/bakefiles/wxwin.py @@ -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'): -- 2.45.2