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
path: root/intern
diff options
context:
space:
mode:
authorAndrea Weikert <elubie@gmx.net>2010-07-11 19:30:32 +0400
committerAndrea Weikert <elubie@gmx.net>2010-07-11 19:30:32 +0400
commitffcec4024bf3e408e2a8f581846954f9b4ed3f86 (patch)
tree72000a238230700a08b062861e173299b174cee1 /intern
parent834f2a42ce09eeecc96182a84d7ab4b043bac5a5 (diff)
installation paths:
small fix: removed extra slash in system path
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_SystemX11.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/intern/ghost/intern/GHOST_SystemX11.cpp b/intern/ghost/intern/GHOST_SystemX11.cpp
index 7644281bcea..c9228e68e54 100644
--- a/intern/ghost/intern/GHOST_SystemX11.cpp
+++ b/intern/ghost/intern/GHOST_SystemX11.cpp
@@ -1461,7 +1461,7 @@ void GHOST_SystemX11::putClipboard(GHOST_TInt8 *buffer, bool selection) const
const GHOST_TUns8* GHOST_SystemX11::getSystemDir() const
{
- return (GHOST_TUns8*)"/usr/share/";
+ return (GHOST_TUns8*)"/usr/share";
}
const GHOST_TUns8* GHOST_SystemX11::getUserDir() const
@@ -1477,4 +1477,5 @@ const GHOST_TUns8* GHOST_SystemX11::getUserDir() const
const GHOST_TUns8* GHOST_SystemX11::getBinaryDir() const
{
return NULL;
-} \ No newline at end of file
+}
+