diff --git a/solenv/gbuild/extensions/post_AuxTargets.mk b/solenv/gbuild/extensions/post_AuxTargets.mk index 13dd2e0c2c10..b98ef3df1348 100644 --- a/solenv/gbuild/extensions/post_AuxTargets.mk +++ b/solenv/gbuild/extensions/post_AuxTargets.mk @@ -44,10 +44,13 @@ distro-pack-install: install $(SRCDIR)/bin/distro-install-sdk $(SRCDIR)/bin/distro-install-file-lists -$(SRCDIR)/src.downloaded: $(SRCDIR)/ooo.lst $(SRCDIR)/download - $(if $(filter YES,$(DO_FETCH_TARBALLS)),cd $(SRCDIR) && ./download ./ooo.lst && touch $@,touch $@) -fetch: $(SRCDIR)/src.downloaded +#these need to stay in the buildpl phase as buildpl depends on them +$(SRCDIR)/src.downloaded: + @true + +fetch: + @true # fixme: can we prevent these exports in the first place? $(SRCDIR)/Env.Host.sh: autogen.lastrun configure.in ooo.lst.in set_soenv.in @@ -55,6 +58,7 @@ $(SRCDIR)/Env.Host.sh: autogen.lastrun configure.in ooo.lst.in set_soenv.in autogen.lastrun: + $(WORKDIR)/bootstrap: @cd $(SRCDIR) && ./bootstrap @mkdir -p $(dir $@) && touch $@ @@ -88,6 +92,48 @@ install: build endif +else +$(SRCDIR)/src.downloaded: $(SRCDIR)/ooo.lst $(SRCDIR)/download + $(if $(filter YES,$(DO_FETCH_TARBALLS)),cd $(SRCDIR) && ./download ./ooo.lst && touch $@,touch $@) + +fetch: $(SRCDIR)/src.downloaded + +id: + @true + +tags: + @true + +docs: + @true + +distro-pack-install: + @true + +$(SRCDIR)/Env.Host.sh: + @true + +autogen.lastrun: + @true + +$(WORKDIR)/bootstrap: + @true + +bootstrap: + @true + +clean-host: + @true + +clean-build: + @true + +distclean: + @true + +install: + @true + endif # vim:set shiftwidth=4 softtabstop=4 noexpandtab: