diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2019-02-13 17:24:11 +0000 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2019-02-13 17:24:11 +0000 |
commit | b47b2a3563a0735480e72c64216645fc363030bb (patch) | |
tree | 862680d294c7802733575d966ab684bb80897ee3 /reproduce | |
parent | b506248839c0c1f63f51bcb0ff6a586426d722f4 (diff) |
Minor cosmetic corrections in software tarball downloading rule
The zip program wasn't placed correctly (in alphabetical order) and its URL
command had the wrong indentation! Both have no effect at all on the
processing and are only cosmetic (to help in readability).
Diffstat (limited to 'reproduce')
-rw-r--r-- | reproduce/src/make/dependencies.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/reproduce/src/make/dependencies.mk b/reproduce/src/make/dependencies.mk index 80a787e..e768051 100644 --- a/reproduce/src/make/dependencies.mk +++ b/reproduce/src/make/dependencies.mk @@ -103,8 +103,8 @@ tarballs = $(foreach t, cfitsio-$(cfitsio-version).tar.gz \ metastore-$(metastore-version).tar.gz \ unzip-$(unzip-version).tar.gz \ tiff-$(libtiff-version).tar.gz \ - zip-$(zip-version).tar.gz \ wcslib-$(wcslib-version).tar.bz2 \ + zip-$(zip-version).tar.gz \ , $(tdir)/$(t) ) $(tarballs): $(tdir)/%: if [ -f $(DEPENDENCIES-DIR)/$* ]; then @@ -147,8 +147,8 @@ $(tarballs): $(tdir)/%: w=ftp://ftp.info-zip.org/pub/infozip/src/unzip$$v.tgz elif [ $$n = wcslib ]; then w=ftp://ftp.atnf.csiro.au/pub/software/wcslib elif [ $$n = zip ]; then - mergenames=0; v=$$(echo $(zip-version) | sed -e's/\.//') - w=ftp://ftp.info-zip.org/pub/infozip/src/zip$$v.tgz + mergenames=0; v=$$(echo $(zip-version) | sed -e's/\.//') + w=ftp://ftp.info-zip.org/pub/infozip/src/zip$$v.tgz else echo; echo; echo; echo "'$$n' not recognized as a dependency name to download." |