summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbosdo <cedricbosdo>2007-02-03 21:28:13 +0000
committercedricbosdo <cedricbosdo>2007-02-03 21:28:13 +0000
commit58af8b97b18a8d237695d1a124b3c9fe84629998 (patch)
tree3f23f9f4e86b5428f422e6df77472dac2a35c489
parentebeef195a65915e649fdc4abe9f9b0153d38ccce (diff)
fix for macosx: adding a SDK didn't work
-rwxr-xr-xcore/source/org/openoffice/ide/eclipse/core/internal/model/SDK.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/source/org/openoffice/ide/eclipse/core/internal/model/SDK.java b/core/source/org/openoffice/ide/eclipse/core/internal/model/SDK.java
index 6658028..b84076c 100755
--- a/core/source/org/openoffice/ide/eclipse/core/internal/model/SDK.java
+++ b/core/source/org/openoffice/ide/eclipse/core/internal/model/SDK.java
@@ -2,9 +2,9 @@
*
* $RCSfile: SDK.java,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: cedricbosdo $ $Date: 2006/12/06 07:49:24 $
+ * last change: $Author: cedricbosdo $ $Date: 2007/02/03 21:28:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the GNU Lesser General Public License Version 2.1
@@ -226,6 +226,8 @@ public class SDK implements ISdk, ITableElement {
} else if (Platform.getOSArch().equals(Platform.ARCH_X86)) {
path = new Path(home).append("/solintel/bin"); //$NON-NLS-1$
}
+ } else if (Platform.getOSArch().equals(Platform.OS_MACOSX)) {
+ path = new Path(home).append("/macosx/bin"); //$NON-NLS-1$
}
return path;
}