Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2008-02-20 00:18:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-02-20 00:18:35 +0300
commit190a35f690b1048a32547a4cb0de369e3f7dde4b (patch)
tree73c355646c9e66e085b9e5415ad217cd2daaf184 /source/blender/yafray
parent2283bdc09b48033c4de0e98e1bfd53b7fb382e25 (diff)
Patche from Giuseppe Ghibò to look in /usr/lib64
Diffstat (limited to 'source/blender/yafray')
-rw-r--r--source/blender/yafray/intern/export_Plugin.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/yafray/intern/export_Plugin.cpp b/source/blender/yafray/intern/export_Plugin.cpp
index abfdb5ed5dc..361939df9c4 100644
--- a/source/blender/yafray/intern/export_Plugin.cpp
+++ b/source/blender/yafray/intern/export_Plugin.cpp
@@ -101,6 +101,9 @@ static string YafrayPath()
static char *alternative[]=
{
"/usr/local/lib/",
+#ifdef __x86_64__
+ "/usr/lib64/",
+#endif
"/usr/lib/",
NULL
};
@@ -124,6 +127,9 @@ static string YafrayPluginPath()
static char *alternative[]=
{
"/usr/local/lib/yafray",
+#ifdef __x86_64__
+ "/usr/lib64/yafray",
+#endif
"/usr/lib/yafray",
NULL
};