summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_optimisation.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-11-08 11:11:32 +1100
committerAndrew Tridgell <tridge@samba.org>2010-11-08 00:55:13 +0000
commitc0297e5e89c48153a6f34f2585f9934bae2b2fbe (patch)
treea30243518ada15ed6570947f27bb28f91246107b /buildtools/wafsamba/samba_optimisation.py
parentb867dc9ea204cfd449ba26f238f1fe733330fe75 (diff)
downloadsamba-c0297e5e89c48153a6f34f2585f9934bae2b2fbe.tar.gz
samba-c0297e5e89c48153a6f34f2585f9934bae2b2fbe.tar.bz2
samba-c0297e5e89c48153a6f34f2585f9934bae2b2fbe.zip
waf: fixed tabs/spaces for python3.0
Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Nov 8 00:55:13 UTC 2010 on sn-devel-104
Diffstat (limited to 'buildtools/wafsamba/samba_optimisation.py')
-rw-r--r--buildtools/wafsamba/samba_optimisation.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/buildtools/wafsamba/samba_optimisation.py b/buildtools/wafsamba/samba_optimisation.py
index ad0534834f..951fd4c1f6 100644
--- a/buildtools/wafsamba/samba_optimisation.py
+++ b/buildtools/wafsamba/samba_optimisation.py
@@ -154,12 +154,12 @@ def suncc_wrap(cls):
which have empty libs'''
if getattr(cls, 'solaris_wrap', False):
return
- cls.solaris_wrap = True
- oldrun = cls.run
- def run(self):
+ cls.solaris_wrap = True
+ oldrun = cls.run
+ def run(self):
if self.env.CC_NAME == "sun" and not self.inputs:
self.env = self.env.copy()
self.env.append_value('LINKFLAGS', '-')
return oldrun(self)
- cls.run = run
+ cls.run = run
suncc_wrap(Task.TaskBase.classes['cc_link'])