diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-18 11:55:31 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-03-18 12:14:05 +0200 |
commit | c378eb15297ba53867689687cbc75350abd147e5 (patch) | |
tree | 173024adafd8fe5ce1eeb99c793223a378f66426 | |
parent | 728d54897e6eb758f95571b6df16a7498286adc1 (diff) |
Sprinkle some realpath goodness here, too
-rwxr-xr-x | svx/AllLangResTarget_gal.mk | 4 | ||||
-rwxr-xr-x | svx/AllLangResTarget_svx.mk | 6 | ||||
-rwxr-xr-x | svx/Library_svx.mk | 6 | ||||
-rwxr-xr-x | svx/Library_textconversiondlgs.mk | 4 |
4 files changed, 10 insertions, 10 deletions
diff --git a/svx/AllLangResTarget_gal.mk b/svx/AllLangResTarget_gal.mk index eb0b5b15c4..3b00b8eeb7 100755 --- a/svx/AllLangResTarget_gal.mk +++ b/svx/AllLangResTarget_gal.mk @@ -36,8 +36,8 @@ $(eval $(call gb_SrsTarget_SrsTarget,svx/gal)) $(eval $(call gb_SrsTarget_set_include,svx/gal,\ $$(INCLUDE) \ -I$(OUTDIR)/inc \ - -I$(SRCDIR)/svx/source/gallery \ - -I$(SRCDIR)/svx/inc/ \ + -I$(realpath $(SRCDIR)/svx/source/gallery) \ + -I$(realpath $(SRCDIR)/svx/inc/) \ )) $(eval $(call gb_SrsTarget_add_files,svx/gal,\ diff --git a/svx/AllLangResTarget_svx.mk b/svx/AllLangResTarget_svx.mk index a18852aab1..3ae2664730 100755 --- a/svx/AllLangResTarget_svx.mk +++ b/svx/AllLangResTarget_svx.mk @@ -40,9 +40,9 @@ $(eval $(call gb_SrsTarget_set_include,svx/res,\ -I$(OUTDIR)/inc \ -I$(WORKDIR)/inc \ -I$(WORKDIR)/inc/svx \ - -I$(SRCDIR)/svx/source/inc \ - -I$(SRCDIR)/svx/source/dialog \ - -I$(SRCDIR)/svx/inc/ \ + -I$(realpath $(SRCDIR)/svx/source/inc) \ + -I$(realpath $(SRCDIR)/svx/source/dialog) \ + -I$(realpath $(SRCDIR)/svx/inc/) \ )) $(eval $(call gb_SrsTarget_add_files,svx/res,\ diff --git a/svx/Library_svx.mk b/svx/Library_svx.mk index a2346cf19a..99d51ddad1 100755 --- a/svx/Library_svx.mk +++ b/svx/Library_svx.mk @@ -30,9 +30,9 @@ $(eval $(call gb_Library_Library,svx)) $(eval $(call gb_Library_set_componentfile,svx,svx/util/svx)) $(eval $(call gb_Library_set_include,svx,\ - -I$(SRCDIR)/svx/inc \ - -I$(SRCDIR)/svx/source/inc \ - -I$(SRCDIR)/svx/inc/pch \ + -I$(realpath $(SRCDIR)/svx/inc) \ + -I$(realpath $(SRCDIR)/svx/source/inc) \ + -I$(realpath $(SRCDIR)/svx/inc/pch) \ $$(SOLARINC) \ -I$(OUTDIR)/inc/offuh \ )) diff --git a/svx/Library_textconversiondlgs.mk b/svx/Library_textconversiondlgs.mk index 03a457b553..513789f0f5 100755 --- a/svx/Library_textconversiondlgs.mk +++ b/svx/Library_textconversiondlgs.mk @@ -30,8 +30,8 @@ $(eval $(call gb_Library_Library,textconversiondlgs)) $(eval $(call gb_Library_set_componentfile,textconversiondlgs,svx/util/textconversiondlgs)) $(eval $(call gb_Library_set_include,textconversiondlgs,\ - -I$(SRCDIR)/svx/inc \ - -I$(SRCDIR)/svx/inc/pch \ + -I$(realpath $(SRCDIR)/svx/inc) \ + -I$(realpath $(SRCDIR)/svx/inc/pch) \ $$(INCLUDE) \ -I$(OUTDIR)/inc/offuh \ )) |