diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-01-14 21:16:23 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-01-14 21:22:13 +0100 |
commit | 101791f57c7f1b6f5feae751b77641a9d5f2187a (patch) | |
tree | 4176d516898871ec39be759cb92510f375a4ca68 /idlc | |
parent | b83fd45150a411a2f8e8b621e844029d83c12473 (diff) |
idlc: do not use -I., deps need absolute paths
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/source/idlccompile.cxx | 2 |
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; |