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 /starmath/Library_sm.mk | |
parent | 156202b06270a90a4b73370d04401486145076d2 (diff) |
gbuild: get rid of realpath in gb_Foo_set_include
Diffstat (limited to 'starmath/Library_sm.mk')
-rw-r--r-- | starmath/Library_sm.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/starmath/Library_sm.mk b/starmath/Library_sm.mk index 110fa23c1aa2..891a07377a1e 100644 --- a/starmath/Library_sm.mk +++ b/starmath/Library_sm.mk @@ -27,7 +27,7 @@ $(eval $(call gb_Library_add_sdi_headers,sm,starmath/sdi/smslots)) $(eval $(call gb_Library_set_componentfile,sm,starmath/util/sm)) $(eval $(call gb_Library_set_include,sm,\ - -I$(realpath $(SRCDIR)/starmath/inc) \ + -I$(SRCDIR)/starmath/inc \ -I$(WORKDIR)/SdiTarget/starmath/sdi \ $$(INCLUDE) \ )) @@ -98,8 +98,8 @@ $(eval $(call gb_Library_add_exception_objects,sm,\ $(eval $(call gb_SdiTarget_SdiTarget,starmath/sdi/smslots,starmath/sdi/smath)) $(eval $(call gb_SdiTarget_set_include,starmath/sdi/smslots,\ - -I$(realpath $(SRCDIR)/starmath/inc) \ - -I$(realpath $(SRCDIR)/starmath/sdi) \ + -I$(SRCDIR)/starmath/inc \ + -I$(SRCDIR)/starmath/sdi \ $$(INCLUDE) \ )) |