diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-09-20 17:49:19 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:38:31 -0500 |
commit | 920a627ba814d78a1765a6c1c7209ff29acc6153 (patch) | |
tree | 193937ab55ada69c24f970dc00d722e03980a466 /source4/lib/SConscript | |
parent | 5c40f9cd9b59041b3382ec24a1091a60134dd8c5 (diff) | |
download | samba-920a627ba814d78a1765a6c1c7209ff29acc6153.tar.gz samba-920a627ba814d78a1765a6c1c7209ff29acc6153.tar.bz2 samba-920a627ba814d78a1765a6c1c7209ff29acc6153.zip |
r10356: Make the proto generator work with scons
(This used to be commit a2268f1dd441059955bee30cf2a9028656c14099)
Diffstat (limited to 'source4/lib/SConscript')
-rw-r--r-- | source4/lib/SConscript | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/SConscript b/source4/lib/SConscript index b3d949d12e..8833028dbd 100644 --- a/source4/lib/SConscript +++ b/source4/lib/SConscript @@ -1,13 +1,13 @@ Import('hostenv') # tastes like -*- python -*- -basic = hostenv.StaticLibrary('basic', - ['version.c', 'xfile.c', 'debug.c', 'fault.c', +basic_files = ['version.c', 'xfile.c', 'debug.c', 'fault.c', 'signal.c', 'system.c', 'time.c', 'genrand.c', 'dprintf.c', 'util_str.c', 'util_strlist.c', 'util_unistr.c', 'util_file.c', 'data_blob.c', 'util.c', 'util_sock.c', 'substitute.c', 'fsusage.c', 'ms_fnmatch.c', 'select.c', 'mutex.c', 'idtree.c', - 'unix_privs.c', 'db_wrap.c', 'gendb.c', 'credentials.c']) + 'db_wrap.c', 'gendb.c', 'credentials.c'] +basic = hostenv.StaticLibrary('basic', basic_files) Export('basic') hostenv.StaticLibrary('netif', ['netif/interface.c', 'netif/netif.c']) |