summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@novell.com>2011-03-16 20:14:18 +0200
committerTor Lillqvist <tlillqvist@novell.com>2011-03-16 20:15:19 +0200
commit5ae153597730893bf1a6417c5425b80e480e8ab7 (patch)
tree31dadd2ff96d46d790a2ceca8b7c32268b80e200
parentd26611f3c6b3b3eda18815331f54a776b49ab78c (diff)
Use realpath to avoid -I options containing symlinks on Cygwin
-rw-r--r--toolkit/Library_tk.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolkit/Library_tk.mk b/toolkit/Library_tk.mk
index e0dbfd59d5bb..15c8692c1ca1 100644
--- a/toolkit/Library_tk.mk
+++ b/toolkit/Library_tk.mk
@@ -35,9 +35,9 @@ $(eval $(call gb_Library_add_package_headers,tk,toolkit_inc))
$(eval $(call gb_Library_set_include,tk,\
$$(INCLUDE) \
- -I$(SRCDIR)/toolkit/inc \
- -I$(SRCDIR)/toolkit/inc/pch \
- -I$(SRCDIR)/toolkit/source \
+ -I$(realpath $(SRCDIR)/toolkit/inc) \
+ -I$(realpath $(SRCDIR)/toolkit/inc/pch) \
+ -I$(realpath $(SRCDIR)/toolkit/source) \
-I$(OUTDIR)/inc/offuh \
))