diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2012-03-05 19:02:10 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2012-03-10 21:23:20 +0100 |
commit | 84b3f7b345eabf3995e4d51055e8d4e26479a6e2 (patch) | |
tree | 830a61b90e7b4778534ef88373528caa5d037b33 /sfx2 | |
parent | 156202b06270a90a4b73370d04401486145076d2 (diff) |
gbuild: get rid of realpath in gb_Foo_set_include
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/AllLangResTarget_sfx2.mk | 8 | ||||
-rw-r--r-- | sfx2/Library_sfx.mk | 12 |
2 files changed, 10 insertions, 10 deletions
diff --git a/sfx2/AllLangResTarget_sfx2.mk b/sfx2/AllLangResTarget_sfx2.mk index 473f8c6e1228..d73d9bfbb9c4 100644 --- a/sfx2/AllLangResTarget_sfx2.mk +++ b/sfx2/AllLangResTarget_sfx2.mk @@ -38,10 +38,10 @@ $(eval $(call gb_SrsTarget_SrsTarget,sfx/res)) $(eval $(call gb_SrsTarget_set_include,sfx/res,\ $$(INCLUDE) \ - -I$(realpath $(SRCDIR)/sfx2/source/dialog) \ - -I$(realpath $(SRCDIR)/sfx2/source/inc) \ - -I$(realpath $(SRCDIR)/sfx2/inc/) \ - -I$(realpath $(SRCDIR)/sfx2/inc/sfx) \ + -I$(SRCDIR)/sfx2/source/dialog \ + -I$(SRCDIR)/sfx2/source/inc \ + -I$(SRCDIR)/sfx2/inc/ \ + -I$(SRCDIR)/sfx2/inc/sfx \ )) $(eval $(call gb_SrsTarget_add_files,sfx/res,\ diff --git a/sfx2/Library_sfx.mk b/sfx2/Library_sfx.mk index cf7c58078323..dae3504f135c 100644 --- a/sfx2/Library_sfx.mk +++ b/sfx2/Library_sfx.mk @@ -43,9 +43,9 @@ $(eval $(call gb_Library_add_api,sfx,\ )) $(eval $(call gb_Library_set_include,sfx,\ - -I$(realpath $(SRCDIR)/sfx2/inc) \ - -I$(realpath $(SRCDIR)/sfx2/inc/sfx2) \ - -I$(realpath $(SRCDIR)/sfx2/source/inc) \ + -I$(SRCDIR)/sfx2/inc \ + -I$(SRCDIR)/sfx2/inc/sfx2 \ + -I$(SRCDIR)/sfx2/source/inc \ -I$(WORKDIR)/SdiTarget/sfx2/sdi \ $$(INCLUDE) \ )) @@ -243,9 +243,9 @@ $(eval $(call gb_SdiTarget_SdiTarget,sfx2/sdi/sfxslots,sfx2/sdi/sfx)) $(eval $(call gb_SdiTarget_set_include,sfx2/sdi/sfxslots,\ $$(INCLUDE) \ - -I$(realpath $(SRCDIR)/sfx2/inc/sfx2) \ - -I$(realpath $(SRCDIR)/sfx2/inc) \ - -I$(realpath $(SRCDIR)/sfx2/sdi) \ + -I$(SRCDIR)/sfx2/inc/sfx2 \ + -I$(SRCDIR)/sfx2/inc \ + -I$(SRCDIR)/sfx2/sdi \ )) ifeq ($(OS),$(filter WNT MACOSX,$(OS))) |