diff options
author | Raul Infante-Sainz <infantesainz@gmail.com> | 2019-08-22 15:35:07 +0100 |
---|---|---|
committer | Raul Infante-Sainz <infantesainz@gmail.com> | 2019-08-22 15:35:07 +0100 |
commit | f52973bb1700a961ebcbb6b158879ab232ed2c09 (patch) | |
tree | 29b5e454c6cff26d9788047215c5c6f64674f740 /reproduce/software/make | |
parent | d09a9c6980b44e00a6d0880e0aa845a5aa4dd01e (diff) |
Adding fpack and funpack in the installation of CFITSIO
Until this commit, `fpack' and `funpack' were not installed by default
with the installation of CFITSIO. It is necessary to explicity do a
`make fpack' and `make funpack' to have them installed. With this
commit, these two programs have been added.
Diffstat (limited to 'reproduce/software/make')
-rw-r--r-- | reproduce/software/make/high-level.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/reproduce/software/make/high-level.mk b/reproduce/software/make/high-level.mk index 0120675..573d4cf 100644 --- a/reproduce/software/make/high-level.mk +++ b/reproduce/software/make/high-level.mk @@ -405,10 +405,12 @@ $(ibidir)/cfitsio: $(tdir)/cfitsio-$(cfitsio-version).tar.gz \ tar cf $$customtar cfitsio-$(cfitsio-version) cd $$topdir - # Continue the standard build on the customized tarball. + # Continue the standard build on the customized tarball. Note that + # with the installation of CFITSIO, `fpack' and `funpack' are not + # installed by default. Because of that, they are added explicity. $(call gbuild, $$customtar, cfitsio-$(cfitsio-version), , \ --enable-sse2 --enable-reentrant \ - --with-bzip2=$(idir), , make shared) \ + --with-bzip2=$(idir), , make shared fpack funpack) \ && rm $$customtar \ && echo "CFITSIO $(cfitsio-version)" > $@ |