diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2017-05-28 14:25:54 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2017-05-28 14:26:50 +0200 |
commit | 372f297de1ed0c3af0fa23dd6ea027035f850207 (patch) | |
tree | 8cd48ba58b5fa85cf6a28b89ef07051d4b805101 | |
parent | eac12b1fe5108bcd64be37e6011721f8566e2015 (diff) |
Makefile is generated in BUILDDIR, not SRCDIR (fix fetch for android)
Change-Id: Ieaa4cb0e8d3370154cd1a57d4afaf5bfa715cbc9
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 6aa98cfe97ab..53cb88141121 100644 --- a/Makefile.in +++ b/Makefile.in @@ -277,7 +277,7 @@ help showmodules gbuildtojson: cross-toolset: bootstrap fetch # fetch again in case there are externals only needed on build platform ifneq ($(OS),IOS) - $(MAKE) gb_Side=build $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile fetch + $(MAKE) gb_Side=build $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(BUILDDIR)/Makefile fetch endif $(MAKE) gb_Side=build $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild build-tools |