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 /sc/Library_scfilt.mk | |
parent | 156202b06270a90a4b73370d04401486145076d2 (diff) |
gbuild: get rid of realpath in gb_Foo_set_include
Diffstat (limited to 'sc/Library_scfilt.mk')
-rw-r--r-- | sc/Library_scfilt.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/Library_scfilt.mk b/sc/Library_scfilt.mk index 58aea4cc68f2..fb168e303095 100644 --- a/sc/Library_scfilt.mk +++ b/sc/Library_scfilt.mk @@ -25,10 +25,10 @@ $(eval $(call gb_Library_Library,scfilt)) $(eval $(call gb_Library_set_componentfile,scfilt,sc/util/scfilt)) $(eval $(call gb_Library_set_include,scfilt,\ - -I$(realpath $(SRCDIR)/sc/source/core/inc) \ - -I$(realpath $(SRCDIR)/sc/source/filter/inc) \ - -I$(realpath $(SRCDIR)/sc/source/ui/inc) \ - -I$(realpath $(SRCDIR)/sc/inc) \ + -I$(SRCDIR)/sc/source/core/inc \ + -I$(SRCDIR)/sc/source/filter/inc \ + -I$(SRCDIR)/sc/source/ui/inc \ + -I$(SRCDIR)/sc/inc \ $$(INCLUDE) \ )) |