diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-08-17 17:13:15 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-08-17 17:32:13 +0200 |
commit | 7eebcebbab8f62935bd1d5460e58b0a8f2cc30e8 (patch) | |
tree | b8bf695344928a8b2fc95190ed34391246a5d681 /buildtools | |
parent | 656607943d8028721e2caa6a0d62d769864046e6 (diff) | |
download | samba-7eebcebbab8f62935bd1d5460e58b0a8f2cc30e8.tar.gz samba-7eebcebbab8f62935bd1d5460e58b0a8f2cc30e8.tar.bz2 samba-7eebcebbab8f62935bd1d5460e58b0a8f2cc30e8.zip |
Revert "waf: enable gccdeps in developer mode"
This reverts commit 61930f50cbace4741500d8b53fc11a4ef3e0d4f8.
This breaks the build with older gcc versions
gcc --version
gcc (SUSE Linux) 4.3.2 [gcc-4_3-branch revision 141291]
(This is SLES 11)
Please only enable it if thet compiler supports it.
metze
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/wscript | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/buildtools/wafsamba/wscript b/buildtools/wafsamba/wscript index bf301d2da5..bad65cac24 100644 --- a/buildtools/wafsamba/wscript +++ b/buildtools/wafsamba/wscript @@ -160,9 +160,8 @@ def configure(conf): # we need git for 'waf dist' conf.find_program('git', var='GIT') - if Options.options.enable_gccdeps or Options.options.developer: - # don't enable gccdeps by default for non-developer builds - # as it needs a very recent version gcc + if Options.options.enable_gccdeps: + # don't enable gccdeps by default as it needs a very recent version gcc conf.check_tool('gccdeps', tooldir=conf.srcdir + "/buildtools/wafsamba") # make the install paths available in environment |