diff options
| author | Kyle Ambroff <ambroff@lindenlab.com> | 2008-09-06 07:07:21 +0000 | 
|---|---|---|
| committer | Kyle Ambroff <ambroff@lindenlab.com> | 2008-09-06 07:07:21 +0000 | 
| commit | fd32a26c1bc5b70bac2886042c3b4f8900705d5d (patch) | |
| tree | 0243bb30dec841b31a2a4f86a02595eae903a8bf | |
| parent | e728263717fd5686d05b39070a02ea0795341dc7 (diff) | |
Exclude package target from 'make all' on Linux, to match Windows and OSX behavior.
| -rw-r--r-- | indra/newview/CMakeLists.txt | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index 826538d8e2..b33061df94 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -1428,6 +1428,7 @@ if (LINUX)    add_custom_target(package ALL DEPENDS ${product}.tar.bz2)    add_dependencies(package linux-crash-logger-stripped) +  set_target_properties(package PROPERTIES EXCLUDE_FROM_DEFAULT_BUILD ON)  endif (LINUX)  if (DARWIN) | 
