From 9a243a791b2ebc2ca31ec109fd097e43463b30e7 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 19 Mar 2010 18:07:39 +1100 Subject: [PATCH] build: rename samba_includes.py to samba_optimisation.py --- buildtools/wafsamba/{samba_includes.py => samba_optimisation.py} | 8 +++++++- buildtools/wafsamba/wafsamba.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) rename buildtools/wafsamba/{samba_includes.py => samba_optimisation.py} (90%) diff --git a/buildtools/wafsamba/samba_includes.py b/buildtools/wafsamba/samba_optimisation.py similarity index 90% rename from buildtools/wafsamba/samba_includes.py rename to buildtools/wafsamba/samba_optimisation.py index 8174bfffe55..d95ddaaa81c 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 c0d428e507b..f17f1a0c573 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 * -- 2.11.4.GIT