summaryrefslogtreecommitdiffstats
path: root/src/bind
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2008-03-31 16:18:48 +0000
committerishmal <ishmal@users.sourceforge.net>2008-03-31 16:18:48 +0000
commit26c5ec7821e19cc1a7c05ec2455e7a6b77cdb60b (patch)
tree607f7c15c7fe4e83612de4d609044853b311afcd /src/bind
parentCmake:Adding Source Files to the CMakeLists.txt in src directory (diff)
downloadinkscape-26c5ec7821e19cc1a7c05ec2455e7a6b77cdb60b.tar.gz
inkscape-26c5ec7821e19cc1a7c05ec2455e7a6b77cdb60b.zip
Change INKSCAPE_JAVADIR to INKSCAPE_BINDDIR so that we can have subdirs for each language supported
(bzr r5268)
Diffstat (limited to 'src/bind')
-rw-r--r--src/bind/javabind.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/bind/javabind.cpp b/src/bind/javabind.cpp
index b142efd54..4314f8819 100644
--- a/src/bind/javabind.cpp
+++ b/src/bind/javabind.cpp
@@ -413,7 +413,8 @@ static void getJavaRoot(String &javaroot)
*slashPos = '\0';
javaroot = exeName;
javaroot.append("\\");
- javaroot.append(INKSCAPE_JAVADIR);
+ javaroot.append(INKSCAPE_BINDDIR);
+ javaroot.append("\\java");
}
@@ -552,7 +553,8 @@ static CreateVMFunc getCreateVMFunc()
static void getJavaRoot(String &javaroot)
{
- javaroot = INKSCAPE_JAVADIR;
+ javaroot = INKSCAPE_BINDDIR;
+ javaroot.append("/java");
}
#endif /* !__WIN32__ */