summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-08-21 08:16:24 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-08-21 06:39:04 +0200
commit4d5471f1c634450020c4530f8d0c8dfcd7252fb3 (patch)
tree21dd9b9cf67d96634eabbf62bce641996dfabe7f /buildtools/wafsamba
parent7cd4eb0ca69026031620cbe578cfd7216ea9ac6c (diff)
downloadsamba-4d5471f1c634450020c4530f8d0c8dfcd7252fb3.tar.gz
samba-4d5471f1c634450020c4530f8d0c8dfcd7252fb3.tar.bz2
samba-4d5471f1c634450020c4530f8d0c8dfcd7252fb3.zip
build: Remove special case for the build farm
Except in the formatting of the selftest output, this removes the special case of the build farm, so that an autobuild, a manual make test and the build farm are more similar. Andrew Bartlett Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Tue Aug 21 06:39:04 CEST 2012 on sn-devel-104
Diffstat (limited to 'buildtools/wafsamba')
-rw-r--r--buildtools/wafsamba/symbols.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/symbols.py b/buildtools/wafsamba/symbols.py
index c4b5599988..13d84b9a41 100644
--- a/buildtools/wafsamba/symbols.py
+++ b/buildtools/wafsamba/symbols.py
@@ -647,7 +647,7 @@ def SYMBOL_CHECK(bld):
Build.BuildContext.SYMBOL_CHECK = SYMBOL_CHECK
def DUP_SYMBOL_CHECK(bld):
- if Options.options.DUP_SYMBOLCHECK and bld.env.DEVELOPER and not bld.env.BUILD_FARM:
+ if Options.options.DUP_SYMBOLCHECK and bld.env.DEVELOPER:
'''check for duplicate symbols'''
bld.SET_BUILD_GROUP('syslibcheck')
task = bld(rule=symbols_dupcheck_fatal, always=True, name='symbol duplicate checking')