diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-16 20:14:18 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-16 20:15:19 +0200 |
commit | 5ae153597730893bf1a6417c5425b80e480e8ab7 (patch) | |
tree | 31dadd2ff96d46d790a2ceca8b7c32268b80e200 /toolkit | |
parent | d26611f3c6b3b3eda18815331f54a776b49ab78c (diff) |
Use realpath to avoid -I options containing symlinks on Cygwin
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/Library_tk.mk | 6 |
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 \ )) |