diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-17 11:03:38 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-17 11:04:32 +0200 |
commit | 690ba6bea35983a55eb0a359dd5696181dd1565a (patch) | |
tree | 0a1c4db8c8ccbd24050bc5fab527eab7bb1d106a /xmloff | |
parent | 26a17669d5bbe970a603423197c18a9383c73df6 (diff) |
Use realpath for Cygwin goodness, drop -I options to nonexistent directories
Diffstat (limited to 'xmloff')
-rwxr-xr-x | xmloff/Library_xo.mk | 6 | ||||
-rwxr-xr-x | xmloff/Library_xof.mk | 6 |
2 files changed, 5 insertions, 7 deletions
diff --git a/xmloff/Library_xo.mk b/xmloff/Library_xo.mk index 4e91bd83f722..278971088472 100755 --- a/xmloff/Library_xo.mk +++ b/xmloff/Library_xo.mk @@ -35,10 +35,8 @@ $(eval $(call gb_Library_add_precompiled_header,xo,$(SRCDIR)/xmloff/inc/pch/prec $(eval $(call gb_Library_set_include,xo,\ $$(SOLARINC) \ - -I. \ - -I$(SRCDIR)/xmloff/inc \ - -I$(SRCDIR)/xmloff/source/inc \ - -I$(SRCDIR)/xmloff/inc/pch \ + -I$(realpath $(SRCDIR)/xmloff/inc) \ + -I$(realpath $(SRCDIR)/xmloff/inc/pch) \ -I$(OUTDIR)/inc/offuh \ )) diff --git a/xmloff/Library_xof.mk b/xmloff/Library_xof.mk index d8918886457d..2ed555d7ac41 100755 --- a/xmloff/Library_xof.mk +++ b/xmloff/Library_xof.mk @@ -30,9 +30,8 @@ $(eval $(call gb_Library_Library,xof)) $(eval $(call gb_Library_set_componentfile,xof,xmloff/source/transform/xof)) $(eval $(call gb_Library_set_include,xof,\ - -I$(SRCDIR)/xmloff/inc/pch \ - -I$(SRCDIR)/xmloff/inc \ - -I$(SRCDIR)/xmloff/source/inc \ + -I$(realpath $(SRCDIR)/xmloff/inc/pch) \ + -I$(realpath $(SRCDIR)/xmloff/inc) \ $$(INCLUDE) \ -I$(OUTDIR)/inc/offuh \ )) @@ -44,6 +43,7 @@ $(eval $(call gb_Library_add_linked_libs,xof,\ sal \ salhelper \ xo \ + $(gb_STDLIBS) \ )) $(eval $(call gb_Library_add_exception_objects,xof,\ |