diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-16 17:07:11 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-16 17:07:11 +0200 |
commit | f549dc8f9d3b9a5c2498d36555a66216904b5e43 (patch) | |
tree | 16b56d1ba453d1e0a1e0c4c85351575b39dbbae0 /tools | |
parent | b60661692b0991d7f4f0fb9d5c1f3cf6d03a95f4 (diff) |
Use realpath to avoid -I options containing symlinks on Cygwin
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Executable_mkunroll.mk | 6 | ||||
-rw-r--r-- | tools/Executable_rscdep.mk | 6 | ||||
-rw-r--r-- | tools/Executable_so_checksum.mk | 6 | ||||
-rw-r--r-- | tools/Executable_sspretty.mk | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/tools/Executable_mkunroll.mk b/tools/Executable_mkunroll.mk index 7dbb613c7865..16cc39fd991d 100644 --- a/tools/Executable_mkunroll.mk +++ b/tools/Executable_mkunroll.mk @@ -29,9 +29,9 @@ $(eval $(call gb_Executable_Executable,mkunroll)) $(eval $(call gb_Executable_set_include,mkunroll,\ $$(INCLUDE) \ - -I$(SRCDIR)/tools/inc/ \ - -I$(SRCDIR)/tools/inc/pch \ - -I$(SRCDIR)/tools/bootstrp/ \ + -I$(realpath $(SRCDIR)/tools/inc) \ + -I$(realpath $(SRCDIR)/tools/inc/pch) \ + -I$(realpath $(SRCDIR)/tools/bootstrp) \ )) $(eval $(call gb_Executable_set_cxxflags,mkunroll,\ diff --git a/tools/Executable_rscdep.mk b/tools/Executable_rscdep.mk index 9185b94d3a0f..f12a09296783 100644 --- a/tools/Executable_rscdep.mk +++ b/tools/Executable_rscdep.mk @@ -29,9 +29,9 @@ $(eval $(call gb_Executable_Executable,rscdep)) $(eval $(call gb_Executable_set_include,rscdep,\ $$(INCLUDE) \ - -I$(SRCDIR)/tools/inc/ \ - -I$(SRCDIR)/tools/inc/pch \ - -I$(SRCDIR)/tools/bootstrp/ \ + -I$(realpath $(SRCDIR)/tools/inc) \ + -I$(realpath $(SRCDIR)/tools/inc/pch) \ + -I$(realpath $(SRCDIR)/tools/bootstrp) \ )) $(eval $(call gb_Executable_set_cxxflags,rscdep,\ diff --git a/tools/Executable_so_checksum.mk b/tools/Executable_so_checksum.mk index 32b95bedd6da..7adf7a998de7 100644 --- a/tools/Executable_so_checksum.mk +++ b/tools/Executable_so_checksum.mk @@ -29,9 +29,9 @@ $(eval $(call gb_Executable_Executable,so_checksum)) $(eval $(call gb_Executable_set_include,so_checksum,\ $$(INCLUDE) \ - -I$(SRCDIR)/tools/inc/ \ - -I$(SRCDIR)/tools/inc/pch \ - -I$(SRCDIR)/tools/bootstrp/ \ + -I$(realpath $(SRCDIR)/tools/inc) \ + -I$(realpath $(SRCDIR)/tools/inc/pch) \ + -I$(realpath $(SRCDIR)/tools/bootstrp) \ )) $(eval $(call gb_Executable_set_cxxflags,so_checksum,\ diff --git a/tools/Executable_sspretty.mk b/tools/Executable_sspretty.mk index e560d7571f5f..5cfd08768b6c 100644 --- a/tools/Executable_sspretty.mk +++ b/tools/Executable_sspretty.mk @@ -29,9 +29,9 @@ $(eval $(call gb_Executable_Executable,sspretty)) $(eval $(call gb_Executable_set_include,sspretty,\ $$(INCLUDE) \ - -I$(SRCDIR)/tools/inc/ \ - -I$(SRCDIR)/tools/inc/pch \ - -I$(SRCDIR)/tools/bootstrp/ \ + -I$(realpath $(SRCDIR)/tools/inc) \ + -I$(realpath $(SRCDIR)/tools/inc/pch) \ + -I$(realpath $(SRCDIR)/tools/bootstrp) \ )) $(eval $(call gb_Executable_set_cxxflags,sspretty,\ |