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.fetch | |
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.fetch')
-rw-r--r-- | Makefile.fetch | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.fetch b/Makefile.fetch index 8b50739a7b60..be434a60d061 100644 --- a/Makefile.fetch +++ b/Makefile.fetch @@ -46,12 +46,11 @@ $(call fetch_Download__checksum_command,$2,$(firstword $(subst -, ,$2))) \ endef define fetch_Optional -$(if $(filter $1,$(BUILD_TYPE)),$2) +$(if $(filter ALL,$(DO_FETCH_TARBALLS))$(filter $1,$(BUILD_TYPE)),$2) endef fetch : $(foreach item, \ - $(if $(filter YES,$(CROSS_COMPILING)),$(BUILD_TARBALLS)) \ 18f577b374d60b3c760a3a3350407632-STLport-4.5.tar.gz \ 7376930b0d3f3d77a685d94c4a3acda8-STLport-4.5-0119.tar.gz \ c441926f3a552ed3e5b274b62e86af16-STLport-4.0.tar.gz \ |