diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-17 12:12:55 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-17 12:12:55 +0200 |
commit | 052a270ff08f2f6eaf09d4589085f9be0e971cf0 (patch) | |
tree | 198a317d8422c776b3f1f42c343f6970ac40f771 /svtools/Library_svt.mk | |
parent | c5f45ade775eca71753532ec28869533cb625b04 (diff) |
Cygwin fixes and cleanups
With realpath now called in AllLangResTarget.mk, we can revert the
explicit expansion of the symlinks to clone/libs-gui/toolkit in the
makefiles for the resources. Also remove unnecessary -I switches that
apparently have just been copy-pasted blindly.
Add realpath calls for -I switches to the makefiles for the
executables.
Diffstat (limited to 'svtools/Library_svt.mk')
-rw-r--r-- | svtools/Library_svt.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/Library_svt.mk b/svtools/Library_svt.mk index b0fa12e3a2c4..da2721476c70 100644 --- a/svtools/Library_svt.mk +++ b/svtools/Library_svt.mk @@ -38,10 +38,10 @@ $(eval $(call gb_Library_set_include,svt,\ -I$(WORKDIR)/inc/svtools \ -I$(WORKDIR)/inc/ \ -I$(OUTDIR)/inc/ \ - -I$(SRCDIR)/svtools/inc \ - -I$(SRCDIR)/svtools/inc/svtools \ - -I$(SRCDIR)/svtools/source/inc \ - -I$(SRCDIR)/svtools/inc/pch \ + -I$(realpath $(SRCDIR)/svtools/inc) \ + -I$(realpath $(SRCDIR)/svtools/inc/svtools) \ + -I$(realpath $(SRCDIR)/svtools/source/inc) \ + -I$(realpath $(SRCDIR)/svtools/inc/pch) \ -I$(OUTDIR)/inc/offuh \ -I$(OUTDIR)/inc \ )) |