summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-12-14 12:13:23 +0100
committerPetr Mladek <pmladek@suse.cz>2011-12-21 12:09:13 +0100
commit00bc8fc77ac26ddcbcdba9ed02ce711a0dd322cc (patch)
treeb906cb3d7f1fa147a3f15d10bb88f12010164a9b /solenv
parenta7b6b855a2d5390a80ad52a027d2382051bc168c (diff)
adding noop rules for auxtargets in buildpl, moved deps of buildpl into that phase
Diffstat (limited to 'solenv')
-rw-r--r--solenv/gbuild/extensions/post_AuxTargets.mk52
1 files changed, 49 insertions, 3 deletions
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: