diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-09-22 23:21:56 -0700 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-09-23 07:17:57 +0000 |
commit | 8ccbbe042b7fed310de9a75ddccc69e51bae72d4 (patch) | |
tree | 0f8213c380334717d0ad6f1e69b7efbb5a932fb1 /lib/torture | |
parent | d2008fbbb951a941d380b4efa0eaf9f3cfe54e13 (diff) | |
download | samba-8ccbbe042b7fed310de9a75ddccc69e51bae72d4.tar.gz samba-8ccbbe042b7fed310de9a75ddccc69e51bae72d4.tar.bz2 samba-8ccbbe042b7fed310de9a75ddccc69e51bae72d4.zip |
lib-subunit: fixed build on systems without subunit devel library
Pair-Programmed-With: Jelmer Vernooij <jelmer@samba.org>
Diffstat (limited to 'lib/torture')
-rw-r--r-- | lib/torture/wscript_build | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/torture/wscript_build b/lib/torture/wscript_build index 7830b3a039..a3ba60592d 100644 --- a/lib/torture/wscript_build +++ b/lib/torture/wscript_build @@ -1,11 +1,9 @@ #!/usr/bin/env python - bld.SAMBA_LIBRARY('torture', - source='torture.c subunit.c ../subunit/c/lib/child.c', + source='torture.c subunit.c', vnum='0.0.1', pc_files='torture.pc', - public_deps='LIBSAMBA-HOSTCONFIG LIBSAMBA-UTIL LIBSAMBA-ERRORS talloc tevent', + public_deps='LIBSAMBA-HOSTCONFIG LIBSAMBA-UTIL LIBSAMBA-ERRORS talloc tevent subunit', public_headers='torture.h' ) - |