diff options
author | Raul Infante-Sainz <infantesainz@gmail.com> | 2019-04-25 21:49:48 +0100 |
---|---|---|
committer | Raul Infante-Sainz <infantesainz@gmail.com> | 2019-04-25 21:49:48 +0100 |
commit | e99798696c2244a7ed682ebf1e128ba9bbbda037 (patch) | |
tree | df2152a60308a72b1c2c312268fab2c39286039d /reproduce/software/make/high-level.mk | |
parent | 2f281c7e199f7ccb662140feb38151862b58900d (diff) |
Added --enable-single option in FFTW installation
Until this commit, FFTW was installed by default, without the single
precission option. However, when installing `sextractor' in a new system
we found an error in the installation complaining about not having
single precission files of FFTW. More explicity the error was: "FFTW
single precision library files not found in [...]".
With this commit, we fix this problem by passing the option
`--enable-single' in the installation of FFTW.
Diffstat (limited to 'reproduce/software/make/high-level.mk')
-rw-r--r-- | reproduce/software/make/high-level.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reproduce/software/make/high-level.mk b/reproduce/software/make/high-level.mk index 969cf8a..43d1bbb 100644 --- a/reproduce/software/make/high-level.mk +++ b/reproduce/software/make/high-level.mk @@ -279,7 +279,7 @@ $(ibidir)/gsl: $(tdir)/gsl-$(gsl-version).tar.gz $(ibidir)/fftw: $(tdir)/fftw-$(fftw-version).tar.gz $(call gbuild, $<, fftw-$(fftw-version), static, \ - --enable-shared) \ + --enable-shared --enable-single) \ && cp $(dtexdir)/fftw.tex $(ictdir)/ \ && echo "FFTW $(fftw-version) \citep{fftw}" > $@ |