diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-07-30 20:42:13 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-07-30 20:49:09 +0200 |
commit | 753e9b3d45f5970ee77505ecf8a816e4e4c5389d (patch) | |
tree | af018ab52009c6236c549e7263aabc1c99c9976b /bridges | |
parent | 6e60ee677ebbb47ac22d4cb18925afb1fd7e6c9f (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 'bridges')
5 files changed, 6 insertions, 6 deletions
diff --git a/bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug98508_Test.idl b/bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug98508_Test.idl index 777c2b66ea05..f58864dd5d58 100644 --- a/bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug98508_Test.idl +++ b/bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug98508_Test.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 com { module sun { module star { module lib { module uno { module bridges { module javaremote { diff --git a/bridges/test/com/sun/star/lib/uno/bridges/java_remote/PolyStructTest.idl b/bridges/test/com/sun/star/lib/uno/bridges/java_remote/PolyStructTest.idl index 8b6b91312a44..e163b0b88cae 100644 --- a/bridges/test/com/sun/star/lib/uno/bridges/java_remote/PolyStructTest.idl +++ b/bridges/test/com/sun/star/lib/uno/bridges/java_remote/PolyStructTest.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 com { module sun { module star { module lib { module uno { module bridges { module javaremote { diff --git a/bridges/test/java_uno/acquire/types.idl b/bridges/test/java_uno/acquire/types.idl index 30770c9e0d3e..0bc0fc10f541 100644 --- a/bridges/test/java_uno/acquire/types.idl +++ b/bridges/test/java_uno/acquire/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 javauno { module acquire { diff --git a/bridges/test/java_uno/equals/types.idl b/bridges/test/java_uno/equals/types.idl index 01ebb890e604..7d523471fa23 100644 --- a/bridges/test/java_uno/equals/types.idl +++ b/bridges/test/java_uno/equals/types.idl @@ -16,8 +16,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "com/sun/star/uno/Exception.idl" -#include "com/sun/star/uno/XInterface.idl" +#include <com/sun/star/uno/Exception.idl> +#include <com/sun/star/uno/XInterface.idl> // UNO interfaces used between Java and native (C++) environments. diff --git a/bridges/test/java_uno/nativethreadpool/types.idl b/bridges/test/java_uno/nativethreadpool/types.idl index 4591ed9df104..e14657cd8379 100644 --- a/bridges/test/java_uno/nativethreadpool/types.idl +++ b/bridges/test/java_uno/nativethreadpool/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 javauno { module nativethreadpool { |