diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-27 15:12:40 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:09 +1000 |
commit | 85a11c4fb7ee39294298657f0e88c23e9a37da98 (patch) | |
tree | 0ff1bab384eb8eb61daadd3f37e5f8b108decb25 | |
parent | 307ac977a269d1ef2a2baca6be5360d8582efc76 (diff) | |
download | samba-85a11c4fb7ee39294298657f0e88c23e9a37da98.tar.gz samba-85a11c4fb7ee39294298657f0e88c23e9a37da98.tar.bz2 samba-85a11c4fb7ee39294298657f0e88c23e9a37da98.zip |
build: support wildcard excludes in INSTALL_WILDCARD()
-rw-r--r-- | buildtools/wafsamba/wafsamba.py | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py index 060a323895..876cdf6988 100644 --- a/buildtools/wafsamba/wafsamba.py +++ b/buildtools/wafsamba/wafsamba.py @@ -1,7 +1,7 @@ # a waf tool to add autoconf-like macros to the configure section # and for SAMBA_ macros for building libraries, binaries etc -import Build, os, Options, Task, Utils, cc, TaskGen +import Build, os, Options, Task, Utils, cc, TaskGen, fnmatch from Configure import conf from Logs import debug from samba_utils import SUBST_VARS_RECURSIVE @@ -640,10 +640,14 @@ Build.BuildContext.INSTALL_FILES = INSTALL_FILES def INSTALL_WILDCARD(bld, destdir, pattern, chmod=0644, flat=False, - python_fixup=False): + python_fixup=False, exclude=None): '''install a set of files matching a wildcard pattern''' - files=bld.path.ant_glob(pattern) - INSTALL_FILES(bld, destdir, files, chmod=chmod, flat=flat) + files=TO_LIST(bld.path.ant_glob(pattern)) + if exclude: + for f in files[:]: + if fnmatch.fnmatch(f, exclude): + files.remove(f) + INSTALL_FILES(bld, destdir, files, chmod=chmod, flat=flat, python_fixup=python_fixup) Build.BuildContext.INSTALL_WILDCARD = INSTALL_WILDCARD @@ -654,7 +658,6 @@ def PUBLIC_HEADERS(bld, public_headers, header_path=None): or it can be a dictionary of wildcard patterns which map to destination directories relative to INCLUDEDIR ''' - import fnmatch dest = '${INCLUDEDIR}' if isinstance(header_path, str): dest += '/' + header_path |