diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-18 18:54:05 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-21 10:12:42 +0200 |
commit | af130785ee2534644cfb46ceb57b1b9654266b73 (patch) | |
tree | d9aef13a3b9b2075c617e911ab8df4ca2c3a82a5 /sw/Library_sw.mk | |
parent | 7a1438d58589030b43a50dec9abfa35a6350ba87 (diff) |
Sprinkle some realpath goodness here, too
(cherry picked from commit f60ac8bb5f2a22fa2826cf08589976cb4a259d74)
Diffstat (limited to 'sw/Library_sw.mk')
-rw-r--r-- | sw/Library_sw.mk | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/Library_sw.mk b/sw/Library_sw.mk index 8d929e55b96b..1ccedbd1ee32 100644 --- a/sw/Library_sw.mk +++ b/sw/Library_sw.mk @@ -34,11 +34,11 @@ $(eval $(call gb_Library_add_precompiled_header,sw,$(SRCDIR)/sw/inc/pch/precompi $(eval $(call gb_Library_set_componentfile,sw,sw/util/sw)) $(eval $(call gb_Library_set_include,sw,\ - -I$(SRCDIR)/sw/source/core/inc \ - -I$(SRCDIR)/sw/source/filter/inc \ - -I$(SRCDIR)/sw/source/ui/inc \ - -I$(SRCDIR)/sw/inc/pch \ - -I$(SRCDIR)/sw/inc \ + -I$(realpath $(SRCDIR)/sw/source/core/inc) \ + -I$(realpath $(SRCDIR)/sw/source/filter/inc) \ + -I$(realpath $(SRCDIR)/sw/source/ui/inc) \ + -I$(realpath $(SRCDIR)/sw/inc/pch) \ + -I$(realpath $(SRCDIR)/sw/inc) \ -I$(WORKDIR)/SdiTarget/sw/sdi \ -I$(WORKDIR)/Misc/sw/ \ $$(INCLUDE) \ @@ -732,8 +732,8 @@ $(eval $(call gb_Library_add_exception_objects,sw,\ $(eval $(call gb_SdiTarget_SdiTarget,sw/sdi/swslots,sw/sdi/swriter)) $(eval $(call gb_SdiTarget_set_include,sw/sdi/swslots,\ - -I$(SRCDIR)/sw/inc \ - -I$(SRCDIR)/sw/sdi \ + -I$(realpath $(SRCDIR)/sw/inc) \ + -I$(realpath $(SRCDIR)/sw/sdi) \ $$(INCLUDE) \ )) |