aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden
diff options
context:
space:
mode:
authorArmin Weatherwax2010-09-06 15:53:12 +0200
committerJacek Antonelli2010-09-16 21:09:15 -0500
commitb6e99d55caa345bc78849c188405ec0727266e0b (patch)
treed495027b4fe562c89e1ac1f67bda912cdbacaed2 /linden
parentlinux64: fetch 32 bit libraries required for voice (diff)
downloadmeta-impy-b6e99d55caa345bc78849c188405ec0727266e0b.zip
meta-impy-b6e99d55caa345bc78849c188405ec0727266e0b.tar.gz
meta-impy-b6e99d55caa345bc78849c188405ec0727266e0b.tar.bz2
meta-impy-b6e99d55caa345bc78849c188405ec0727266e0b.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