From 485699e7afe8ec4530502a3114fd1df4fc458f28 Mon Sep 17 00:00:00 2001 From: Zi Ree Date: Tue, 12 Dec 2023 15:47:03 +0100 Subject: [PATCH] Linux: remove error advisory about 64 bits. Linux is only 64 bits now, so this advisory makes no sense anymore. --- indra/newview/linux_tools/wrapper.sh | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/indra/newview/linux_tools/wrapper.sh b/indra/newview/linux_tools/wrapper.sh index 729ce478c3..eb3f7c3109 100755 --- a/indra/newview/linux_tools/wrapper.sh +++ b/indra/newview/linux_tools/wrapper.sh @@ -180,17 +180,4 @@ LL_RUN_ERR=$? if [ $LL_RUN_ERR -ne 0 ]; then # generic error running the binary echo '*** Bad shutdown ($LL_RUN_ERR). ***' - if [ "$(uname -m)" = "x86_64" ] && [ "$(file bin/do-not-directly-run-firestorm-bin | grep -o 64-bit )" != "64-bit" ]; then - echo - cat << EOFMARKER -You are running the Firestorm Viewer on a x86_64 platform. The -most common problems when launching the Viewer (particularly -'bin/do-not-directly-run-firestorm-bin: not found' and 'error while -loading shared libraries') may be solved by enabling 32-bit -architecture and installing one or more 32-bit compatibility libraries. -Consult the Firestorm wiki at -http://wiki.firestormviewer.org/32-bit_viewer_in_64-bit_linux -EOFMARKER - fi fi -