summaryrefslogtreecommitdiff
path: root/codemaker/test/javamaker
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-07-30 20:42:13 +0200
committerMichael Stahl <mstahl@redhat.com>2012-07-30 20:49:09 +0200
commit753e9b3d45f5970ee77505ecf8a816e4e4c5389d (patch)
treeaf018ab52009c6236c549e7263aabc1c99c9976b /codemaker/test/javamaker
parent6e60ee677ebbb47ac22d4cb18925afb1fd7e6c9f (diff)
udkapi, offapi: do not use #include "foo":
Evidently on Windows, the newfangled ucpp handles #include "foo" differently from #include <foo> and treats it as a relative path, while the angle brackets always result in absolute paths. Since relative paths result in infinite rebuilds if make is invoked in a different directory, don't use #include "foo" in IDL files. Change-Id: Iedcda3a4be5542389a0be086f14541cda8dc5323
Diffstat (limited to 'codemaker/test/javamaker')
-rw-r--r--codemaker/test/javamaker/java15/types.idl2
-rw-r--r--codemaker/test/javamaker/types.idl14
2 files changed, 8 insertions, 8 deletions
diff --git a/codemaker/test/javamaker/java15/types.idl b/codemaker/test/javamaker/java15/types.idl
index 873117bf036e..4c4770ead667 100644
--- a/codemaker/test/javamaker/java15/types.idl
+++ b/codemaker/test/javamaker/java15/types.idl
@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "com/sun/star/uno/XInterface.idl"
+#include <com/sun/star/uno/XInterface.idl>
module test { module codemaker { module javamaker { module java15 {
diff --git a/codemaker/test/javamaker/types.idl b/codemaker/test/javamaker/types.idl
index ad982e78c706..e2d64482db14 100644
--- a/codemaker/test/javamaker/types.idl
+++ b/codemaker/test/javamaker/types.idl
@@ -16,13 +16,13 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "com/sun/star/lang/ClassNotFoundException.idl"
-#include "com/sun/star/lang/IllegalAccessException.idl"
-#include "com/sun/star/uno/DeploymentException.idl"
-#include "com/sun/star/uno/Exception.idl"
-#include "com/sun/star/uno/RuntimeException.idl"
-#include "com/sun/star/uno/XInterface.idl"
-#include "com/sun/star/uno/XNamingService.idl"
+#include <com/sun/star/lang/ClassNotFoundException.idl>
+#include <com/sun/star/lang/IllegalAccessException.idl>
+#include <com/sun/star/uno/DeploymentException.idl>
+#include <com/sun/star/uno/Exception.idl>
+#include <com/sun/star/uno/RuntimeException.idl>
+#include <com/sun/star/uno/XInterface.idl>
+#include <com/sun/star/uno/XNamingService.idl>
module test { module codemaker { module javamaker {