diff options
author | Raul Infante-Sainz <infantesainz@gmail.com> | 2019-05-28 12:36:16 +0100 |
---|---|---|
committer | Raul Infante-Sainz <infantesainz@gmail.com> | 2019-05-28 12:36:16 +0100 |
commit | 904f1cfce355e38b80b9c60ac91d5a6a7699c87f (patch) | |
tree | 99c0d44216c678e8f1cf094e7e13cecbf64a1513 /reproduce/software | |
parent | 0f121e014b10a5862b65841a3cfe582a68a285b2 (diff) |
Corrected typo in Imfit installation, but not working yet
With this commit, I have corrected a typo in the installation of
`imfit'. In principle it is working on Mac OS system but when I tried to
install it in GNU/Linux system it crashed. It complains about a problem
with the `cfitsio' library:
/pathto/libcfitsio.a: error adding symbols: File format not recognized
As in the last commits done by Mohammad in the project, `cfitsio'
installation has been upgraded and also the installation has been
modified, I am going to try this new version. I will also check if it is
a problem about dynamic/static library.
It also seems that the installation is taking libraries and variables
from the host system, so I will check that everything used is from our
own programs/libraries.
Diffstat (limited to 'reproduce/software')
-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 7950c5d..98cdf76 100644 --- a/reproduce/software/make/high-level.mk +++ b/reproduce/software/make/high-level.mk @@ -632,7 +632,7 @@ $(ibidir)/imfit: $(tdir)/imfit-$(imfit-version).tar.gz \ && if ! tar xf $<; then echo; echo "Tar error"; exit 1; fi \ && cd $$unpackdir \ && scons --no-openmp --no-nlopt \ - --header-path=$(idir)/inlcude --lib-path=$(idir)/lib imfit \ + --header-path=$(idir)/include --lib-path=$(idir)/lib imfit \ && cp imfit $(ibdir) \ && scons --no-openmp --no-nlopt --header-path=$(idir)/inlcude \ --lib-path=$(idir)/lib imfit-mcmc \ |