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 /basctl/Library_basctl.mk | |
parent | 156202b06270a90a4b73370d04401486145076d2 (diff) |
gbuild: get rid of realpath in gb_Foo_set_include
Diffstat (limited to 'basctl/Library_basctl.mk')
-rw-r--r-- | basctl/Library_basctl.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/basctl/Library_basctl.mk b/basctl/Library_basctl.mk index 438c8c325ca5..cfc44884d069 100644 --- a/basctl/Library_basctl.mk +++ b/basctl/Library_basctl.mk @@ -31,9 +31,9 @@ $(eval $(call gb_Library_Library,basctl)) $(eval $(call gb_Library_set_componentfile,basctl,basctl/util/basctl)) $(eval $(call gb_Library_set_include,basctl,\ - -I$(realpath $(SRCDIR)/basctl/inc) \ - -I$(realpath $(SRCDIR)/basctl/sdi) \ - -I$(realpath $(SRCDIR)/basctl/source/inc) \ + -I$(SRCDIR)/basctl/inc \ + -I$(SRCDIR)/basctl/sdi \ + -I$(SRCDIR)/basctl/source/inc \ $$(INCLUDE) \ -I$(WORKDIR)/SdiTarget/basctl/sdi \ )) |