diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-17 15:03:59 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-17 15:06:58 +0200 |
commit | 4f05d1535efdd52e29d5a5d0e196e83d7c064313 (patch) | |
tree | c01becafa2a3e178925f0fd83aefbc2430af712d /sfx2/Library_sfx.mk | |
parent | 2e32ee51666ccbc2e50cf407e6824bccad6d3d70 (diff) |
Sprinkle some realpath goodness here, too
Diffstat (limited to 'sfx2/Library_sfx.mk')
-rwxr-xr-x | sfx2/Library_sfx.mk | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sfx2/Library_sfx.mk b/sfx2/Library_sfx.mk index 1fbee91e9ffa..4d2396bf069c 100755 --- a/sfx2/Library_sfx.mk +++ b/sfx2/Library_sfx.mk @@ -39,10 +39,10 @@ $(eval $(call gb_Library_add_sdi_headers,sfx,sfx2/sdi/sfxslots)) $(eval $(call gb_Library_set_componentfile,sfx,sfx2/util/sfx)) $(eval $(call gb_Library_set_include,sfx,\ - -I$(SRCDIR)/sfx2/inc \ - -I$(SRCDIR)/sfx2/inc/sfx2 \ - -I$(SRCDIR)/sfx2/source/inc \ - -I$(SRCDIR)/sfx2/inc/pch \ + -I$(realpath $(SRCDIR)/sfx2/inc) \ + -I$(realpath $(SRCDIR)/sfx2/inc/sfx2) \ + -I$(realpath $(SRCDIR)/sfx2/source/inc) \ + -I$(realpath $(SRCDIR)/sfx2/inc/pch) \ -I$(WORKDIR)/SdiTarget/sfx2/sdi \ -I$(WORKDIR)/inc/ \ $$(INCLUDE) \ @@ -239,9 +239,9 @@ $(eval $(call gb_SdiTarget_SdiTarget,sfx2/sdi/sfxslots,sfx2/sdi/sfx)) $(eval $(call gb_SdiTarget_set_include,sfx2/sdi/sfxslots,\ $$(INCLUDE) \ - -I$(SRCDIR)/sfx2/inc/sfx2 \ - -I$(SRCDIR)/sfx2/inc \ - -I$(SRCDIR)/sfx2/sdi \ + -I$(realpath $(SRCDIR)/sfx2/inc/sfx2) \ + -I$(realpath $(SRCDIR)/sfx2/inc) \ + -I$(realpath $(SRCDIR)/sfx2/sdi) \ )) ifeq ($(OS),$(filter WNT MACOSX,$(OS))) |