diff options
author | Noel Power <noel.power@suse.com> | 2018-07-27 14:26:35 +0100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2018-09-27 01:54:27 +0200 |
commit | e8fec94827c933041acd5b447eeeefd0b7b507ef (patch) | |
tree | 9cc2387a033f07eb455d2b80fdab7a817a9d1a8e /examples | |
parent | cddd54e8654c94dedd57c08af1987ce03212ce20 (diff) | |
download | samba-e8fec94827c933041acd5b447eeeefd0b7b507ef.tar.gz |
PY3: fix "TabError: inconsistent use of tabs and spaces"
Signed-off-by: Noel Power <noel.power@suse.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/winexe/wscript | 20 |
1 files changed, 10 insertions, 10 deletions
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") |