diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-11-21 20:20:46 +1100 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2012-11-22 12:00:36 +0100 |
commit | f22e15d9d5a3d4744982265363c357ef277ba31e (patch) | |
tree | 8701ec18b0599cd0e7356476d444e7b355609467 /source3/lib | |
parent | 895cc9a9157d51f768d35f888795e8af7efed781 (diff) | |
download | samba-f22e15d9d5a3d4744982265363c357ef277ba31e.tar.gz samba-f22e15d9d5a3d4744982265363c357ef277ba31e.tar.bz2 samba-f22e15d9d5a3d4744982265363c357ef277ba31e.zip |
build: Do not install testing binaries
These binaries are for developer or selftest use, and are not
supported for installation onto the system. The autoconf build does
not install these binaries, and so neither should the waf build.
Andrew Bartlett
Reviewed-by: Andreas Schneider <asn@samba.org>
Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date(master): Thu Nov 22 12:00:36 CET 2012 on sn-devel-104
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/asys/wscript_build | 3 | ||||
-rw-r--r-- | source3/lib/pthreadpool/wscript_build | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/source3/lib/asys/wscript_build b/source3/lib/asys/wscript_build index 7b6d2365e6..15de9770b8 100644 --- a/source3/lib/asys/wscript_build +++ b/source3/lib/asys/wscript_build @@ -6,4 +6,5 @@ bld.SAMBA3_SUBSYSTEM('LIBASYS', bld.SAMBA3_BINARY('asystest', source='tests.c', - deps='LIBASYS') + deps='LIBASYS', + install=False) diff --git a/source3/lib/pthreadpool/wscript_build b/source3/lib/pthreadpool/wscript_build index 2cdd2ab312..bdd5f53dcf 100644 --- a/source3/lib/pthreadpool/wscript_build +++ b/source3/lib/pthreadpool/wscript_build @@ -13,4 +13,5 @@ else: bld.SAMBA3_BINARY('pthreadpooltest', source='tests.c', deps='PTHREADPOOL', - enabled=bld.env.WITH_PTHREADPOOL) + enabled=bld.env.WITH_PTHREADPOOL, + install=False) |