diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-18 11:31:50 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-18 11:31:50 +0200 |
commit | 728d54897e6eb758f95571b6df16a7498286adc1 (patch) | |
tree | a26b8abbb2507f6c04467af3f8274ae597ed8ee7 | |
parent | ee429287783ba7f9fe100cb3b32e64076d39c0c9 (diff) |
Sprinkle some realpath goodness here, too
-rwxr-xr-x | svx/Library_svxcore.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/Library_svxcore.mk b/svx/Library_svxcore.mk index 7cd1a521e7..105eca6d5a 100755 --- a/svx/Library_svxcore.mk +++ b/svx/Library_svxcore.mk @@ -37,9 +37,9 @@ $(eval $(call gb_Library_add_package_headers,svxcore,\ )) $(eval $(call gb_Library_set_include,svxcore,\ - -I$(SRCDIR)/svx/inc \ - -I$(SRCDIR)/svx/inc/pch \ - -I$(SRCDIR)/svx/source/inc \ + -I$(realpath $(SRCDIR)/svx/inc) \ + -I$(realpath $(SRCDIR)/svx/inc/pch) \ + -I$(realpath $(SRCDIR)/svx/source/inc) \ $$(INCLUDE) \ -I$(OUTDIR)/inc/offuh \ -I$(WORKDIR)/SdiTarget/svx/sdi \ @@ -446,8 +446,8 @@ $(eval $(call gb_SdiTarget_SdiTarget,svx/sdi/svxslots,svx/sdi/svx)) $(eval $(call gb_SdiTarget_set_include,svx/sdi/svxslots,\ $$(INCLUDE) \ - -I$(SRCDIR)/svx/inc \ - -I$(SRCDIR)/svx/sdi \ + -I$(realpath $(SRCDIR)/svx/inc) \ + -I$(realpath $(SRCDIR)/svx/sdi) \ )) # vim: set noet sw=4 ts=4: |