aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden
diff options
context:
space:
mode:
authorArmin Weatherwax2010-09-06 15:53:12 +0200
committerMcCabe Maxsted2010-09-10 19:12:23 -0700
commit273b90680748ebcde4c259db6d1f05f2f9c7e0d7 (patch)
treeb4129f353476bfb6981575764e9c36978b185d68 /linden
parentFixed Boost.cmake and removed the boost::system and boost::filesystem depende... (diff)
downloadmeta-impy-273b90680748ebcde4c259db6d1f05f2f9c7e0d7.zip
meta-impy-273b90680748ebcde4c259db6d1f05f2f9c7e0d7.tar.gz
meta-impy-273b90680748ebcde4c259db6d1f05f2f9c7e0d7.tar.bz2
meta-impy-273b90680748ebcde4c259db6d1f05f2f9c7e0d7.tar.xz
fix: 32bit libs for linux64 are not actually downloaded
Diffstat (limited to 'linden')
-rw-r--r--linden/indra/cmake/ViewerMiscLibs.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/cmake/ViewerMiscLibs.cmake b/linden/indra/cmake/ViewerMiscLibs.cmake
index 4a62ebd..7fe1040 100644
--- a/linden/indra/cmake/ViewerMiscLibs.cmake
+++ b/linden/indra/cmake/ViewerMiscLibs.cmake
@@ -4,9 +4,9 @@ include(Prebuilt)
4if (NOT STANDALONE) 4if (NOT STANDALONE)
5 use_prebuilt_binary(libuuid) 5 use_prebuilt_binary(libuuid)
6 use_prebuilt_binary(vivox) 6 use_prebuilt_binary(vivox)
7 if(LINUX64) 7 if(LINUX AND ${ARCH} STREQUAL "x86_64")
8 use_prebuilt_binary(32bitcompatibilitylibs) 8 use_prebuilt_binary(32bitcompatibilitylibs)
9 endif(LINUX64) 9 endif(LINUX AND ${ARCH} STREQUAL "x86_64")
10 use_prebuilt_binary(fontconfig) 10 use_prebuilt_binary(fontconfig)
11endif(NOT STANDALONE) 11endif(NOT STANDALONE)
12 12