summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-03-19 18:07:39 +1100
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:26:54 +1000
commit9a243a791b2ebc2ca31ec109fd097e43463b30e7 (patch)
treea4bb1e33fb6f9e8cea55ed8a207d1d9652eaf450
parent8caac7a1a32c69474dd8b74d1ab8181c8f6c74f0 (diff)
downloadsamba-9a243a791b2ebc2ca31ec109fd097e43463b30e7.tar.gz
samba-9a243a791b2ebc2ca31ec109fd097e43463b30e7.tar.bz2
samba-9a243a791b2ebc2ca31ec109fd097e43463b30e7.zip
build: rename samba_includes.py to samba_optimisation.py
-rw-r--r--buildtools/wafsamba/samba_optimisation.py (renamed from buildtools/wafsamba/samba_includes.py)8
-rw-r--r--buildtools/wafsamba/wafsamba.py2
2 files changed, 8 insertions, 2 deletions
diff --git a/buildtools/wafsamba/samba_includes.py b/buildtools/wafsamba/samba_optimisation.py
index 8174bfffe5..d95ddaaa81 100644
--- a/buildtools/wafsamba/samba_includes.py
+++ b/buildtools/wafsamba/samba_optimisation.py
@@ -1,4 +1,10 @@
-# a includes processing tool to speed up include path calculations
+# This file contains waf optimisations for Samba
+
+# most of these optimisations are possible because of the restricted build environment
+# that Samba has. For example, Samba doesn't attempt to cope with Win32 paths during the
+# build, and Samba doesn't need build varients
+
+# overall this makes some build tasks quite a bit faster
from TaskGen import feature, before, after
import preproc
diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py
index c0d428e507..f17f1a0c57 100644
--- a/buildtools/wafsamba/wafsamba.py
+++ b/buildtools/wafsamba/wafsamba.py
@@ -6,7 +6,7 @@ from Configure import conf
from Logs import debug
# bring in the other samba modules
-from samba_includes import *
+from samba_optimisation import *
from samba_utils import *
from samba_autoconf import *
from samba_patterns import *