From 383cace9ee9d8d4325dc17ad2424243899b09b5b Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 22 Jun 2015 17:59:26 +0200 Subject: Fix for BUILDDIR != SRCDIR Change-Id: I3ea2a0a6d8f54afcc1959b54c36f90bb849995b4 --- compilerplugins/clang/plugin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compilerplugins/clang') diff --git a/compilerplugins/clang/plugin.cxx b/compilerplugins/clang/plugin.cxx index 4a391823bced..88d623831851 100644 --- a/compilerplugins/clang/plugin.cxx +++ b/compilerplugins/clang/plugin.cxx @@ -92,7 +92,7 @@ bool Plugin::isInUnoIncludeFile(SourceLocation spellingLocation) const { || name.startswith(SRCDIR "/include/systools/") || name.startswith(SRCDIR "/include/typelib/") || name.startswith(SRCDIR "/include/uno/") - || name.startswith(SRCDIR "/workdir/") + || name.startswith(WORKDIR "/") || name == SRCDIR "/include/comphelper/implbase_var.hxx"); } -- cgit