diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-02 19:57:32 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:23 +1000 |
commit | 0c294655f61048581e72e0c089d2aada247be40d (patch) | |
tree | 7b28249b6fcc3ff27de0b2cd1355839caf0e2435 | |
parent | f01f74b2beb43c9e44a0cf256d1f5d2ba4a8e1d1 (diff) | |
download | samba-0c294655f61048581e72e0c089d2aada247be40d.tar.gz samba-0c294655f61048581e72e0c089d2aada247be40d.tar.bz2 samba-0c294655f61048581e72e0c089d2aada247be40d.zip |
build: don't depend on the blib/ files in SAMBA_PIDL()
-rw-r--r-- | buildtools/wafsamba/samba_pidl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_pidl.py b/buildtools/wafsamba/samba_pidl.py index 132d0cf6d5..ff2b527458 100644 --- a/buildtools/wafsamba/samba_pidl.py +++ b/buildtools/wafsamba/samba_pidl.py @@ -51,7 +51,7 @@ def SAMBA_PIDL(bld, pname, source, try: pidl_src_nodes = bld.pidl_files_cache except AttributeError: - bld.pidl_files_cache = bld.srcnode.ant_glob('pidl/**/*.pm', flat=False) + bld.pidl_files_cache = bld.srcnode.ant_glob('pidl/lib/Parse/**/*.pm', flat=False) bld.pidl_files_cache.extend(bld.srcnode.ant_glob('pidl', flat=False)) pidl_src_nodes = bld.pidl_files_cache |