From e8fec94827c933041acd5b447eeeefd0b7b507ef Mon Sep 17 00:00:00 2001 From: Noel Power Date: Fri, 27 Jul 2018 14:26:35 +0100 Subject: PY3: fix "TabError: inconsistent use of tabs and spaces" Signed-off-by: Noel Power Reviewed-by: Andrew Bartlett --- examples/winexe/wscript | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'examples') diff --git a/examples/winexe/wscript b/examples/winexe/wscript index 8e42f014da5..6b311b1da41 100644 --- a/examples/winexe/wscript +++ b/examples/winexe/wscript @@ -9,23 +9,23 @@ def configure(conf): for a in AR32: for t in TC: - if conf.find_program(a + '-' + t + '-gcc', var='WINEXE_CC_WIN32'): - found = True - break - if found: + if conf.find_program(a + '-' + t + '-gcc', var='WINEXE_CC_WIN32'): + found = True + break + if found: conf.DEFINE('HAVE_WINEXE_CC_WIN32', 1); - break + break found = False for a in AR64: for t in TC: - if conf.find_program(a + '-' + t + '-gcc', var='WINEXE_CC_WIN64'): - found = True - break - if found: + if conf.find_program(a + '-' + t + '-gcc', var='WINEXE_CC_WIN64'): + found = True + break + if found: conf.DEFINE('HAVE_WINEXE_CC_WIN64', 1); - break + break conf.DEFINE("WINEXE_LDFLAGS", "-s -Wall -Wl,-Bstatic -Wl,-Bdynamic -luserenv") -- cgit v1.2.1