From 8b15a1f835a5002cf643bf3f4665b7916cfb5143 Mon Sep 17 00:00:00 2001 From: Don BURNS Date: Thu, 14 Mar 2002 20:29:05 +0000 Subject: [PATCH] Fixed a problem for finding MIPS 64 bit libraries. Was seaching for LD_LIBRARYN32_PATH instead of LD_LIBRARY64_PATH --- src/osgDB/FileUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgDB/FileUtils.cpp b/src/osgDB/FileUtils.cpp index 6a0ebf0d0..83e013130 100644 --- a/src/osgDB/FileUtils.cpp +++ b/src/osgDB/FileUtils.cpp @@ -255,7 +255,7 @@ char *osgDB::findDSO( const char *name ) #elif (_MIPS_SIM == _MIPS_SIM_ABI64) - if( !(ptr = getenv( "LD_LIBRARYN32_PATH" ))) + if( !(ptr = getenv( "LD_LIBRARY64_PATH" ))) ptr = getenv( "LD_LIBRARY_PATH" ); if( ptr )