summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-01-14 21:16:23 +0100
committerMichael Stahl <mstahl@redhat.com>2012-01-14 21:22:13 +0100
commit101791f57c7f1b6f5feae751b77641a9d5f2187a (patch)
tree4176d516898871ec39be759cb92510f375a4ca68 /idlc
parentb83fd45150a411a2f8e8b621e844029d83c12473 (diff)
idlc: do not use -I., deps need absolute paths
Diffstat (limited to 'idlc')
-rw-r--r--idlc/source/idlccompile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/idlc/source/idlccompile.cxx b/idlc/source/idlccompile.cxx
index 72806d9fb104..f83820fc6bc3 100644
--- a/idlc/source/idlccompile.cxx
+++ b/idlc/source/idlccompile.cxx
@@ -252,7 +252,7 @@ sal_Int32 compileFile(const OString * pathname)
idlc()->setRealFileName(tmpFile);
OStringBuffer cppArgs(512);
- cppArgs.append("-DIDL -Xi -Xc -+ -I.");
+ cppArgs.append("-DIDL -Xi -Xc -+");
Options* pOptions = idlc()->getOptions();
OString filePath;