diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2012-11-22 12:14:05 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2012-11-27 22:40:24 +0100 |
commit | e80393462d62be97d7efabaf1b17e269efb37637 (patch) | |
tree | a49ee8e425edd3b53bd1d6de3828246398baeaf8 /Makefile.top | |
parent | 6d69a50e769ebee5d0cd75a27fd1a5cdfaace284 (diff) |
support for --with-all-tarballs
- this is needed for packaging, so that all possible tarballs can be
available in the complete source package
Do not define tarball names in configure. Move the variables into
download.lst, which is going to be included in config_host.mk.
We already have conditions for getting tarballs in Makefile.fetch.
Change-Id: I160aff6426a253814eea07d2467e4942478f653a
Diffstat (limited to 'Makefile.top')
-rw-r--r-- | Makefile.top | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.top b/Makefile.top index 3d570f816e7f..6c42cdd1e7f4 100644 --- a/Makefile.top +++ b/Makefile.top @@ -368,13 +368,13 @@ ifneq ($(filter-out clean distclean,$(MAKECMDGOALS)),) # # Fetch # -ifeq ($(DO_FETCH_TARBALLS),YES) +ifneq ($(DO_FETCH_TARBALLS),NO) include $(SRCDIR)/Makefile.fetch endif fetch: $(SRCDIR)/src.downloaded $(SRCDIR)/src.downloaded : $(SRCDIR)/download $(SRCDIR)/config_host.mk -ifeq ($(DO_FETCH_TARBALLS),YES) +ifneq ($(DO_FETCH_TARBALLS),NO) @$< && touch $@ else @echo "Automatic fetching of external tarballs is disabled." |