From 753e9b3d45f5970ee77505ecf8a816e4e4c5389d Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Mon, 30 Jul 2012 20:42:13 +0200 Subject: udkapi, offapi: do not use #include "foo": Evidently on Windows, the newfangled ucpp handles #include "foo" differently from #include 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 --- cppu/qa/cppumaker/types.idl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'cppu/qa/cppumaker') diff --git a/cppu/qa/cppumaker/types.idl b/cppu/qa/cppumaker/types.idl index b30996cf05a1..da5aa8fe62cd 100644 --- a/cppu/qa/cppumaker/types.idl +++ b/cppu/qa/cppumaker/types.idl @@ -18,14 +18,14 @@ /*TODO: Do not depend on types for which C++ header files are only generated later in the build process in offuh: */ -#include "com/sun/star/lang/ClassNotFoundException.idl" -#include "com/sun/star/lang/IllegalAccessException.idl" -#include "com/sun/star/lang/Locale.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 +#include +#include +#include +#include +#include +#include +#include singleton FILE: com::sun::star::uno::XInterface; singleton lconv: com::sun::star::uno::XInterface; -- cgit