diff options
| author | Boroondas Gupte (original fix by Techwolf Lupindo) <hg@boroon.dasgupta.ch> | 2010-10-04 23:01:43 +0200 | 
|---|---|---|
| committer | Boroondas Gupte (original fix by Techwolf Lupindo) <hg@boroon.dasgupta.ch> | 2010-10-04 23:01:43 +0200 | 
| commit | 5bcfa063b448deacd6a539765fc7490309ba1fbe (patch) | |
| tree | 34f2a115b9b65c89aa1ddf52e4ea02997e6e2a87 | |
| parent | 144b8349b3f0773ac575e178a0e3109d963be9a8 (diff) | |
SNOW-651: Added missing "if (LL_TESTS)"
Daggified version of http://svn.secondlife.com/trac/linden/changeset/3523
(or of the SNOW-651 part of https://bitbucket.org/Techwolf/viewer-development/changeset/5697874b390b )
| -rw-r--r-- | doc/contributions.txt | 1 | ||||
| -rw-r--r-- | indra/llplugin/slplugin/CMakeLists.txt | 4 | 
2 files changed, 4 insertions, 1 deletions
| diff --git a/doc/contributions.txt b/doc/contributions.txt index ef9f09bd23..b4a3361232 100644 --- a/doc/contributions.txt +++ b/doc/contributions.txt @@ -596,6 +596,7 @@ Teardrops Fall  	VWR-5366  Techwolf Lupindo  	SNOW-92 +	SNOW-651  	VWR-12385  tenebrous pau  	VWR-247 diff --git a/indra/llplugin/slplugin/CMakeLists.txt b/indra/llplugin/slplugin/CMakeLists.txt index c1536e85de..f4f4ba99da 100644 --- a/indra/llplugin/slplugin/CMakeLists.txt +++ b/indra/llplugin/slplugin/CMakeLists.txt @@ -62,4 +62,6 @@ if (DARWIN)    )  endif (DARWIN) -ll_deploy_sharedlibs_command(SLPlugin) +if (LL_TESTS) +  ll_deploy_sharedlibs_command(SLPlugin) +endif (LL_TESTS) | 
