Re: [easybuild] installing lm-sensors

2018-05-04 Thread Mikael Öhman
Hi Joseph, you have a bug here installopts = 'PREFIX=%(installdir)s/' installopts = 'ETCDIR=%(installdir)s/etc/' this is just replacing the installopts variable with the second line. You must add to it (it's just python code) Also, there must be a space between the options. installopts =

Re: [easybuild] installing lm-sensors

2018-05-04 Thread Pablo Escobar Lopez
you are overriding "installopts" so only the last variable definition is being used. That's why your custom prefix is not applied. You should do it like this installopts = 'PREFIX=%(installdir)s ETCDIR=%(installdir)s/etc/' On Fri, May 4, 2018 at 10:58 AM, Mr. Joseph John <

Re: [easybuild] installing lm-sensors

2018-05-04 Thread Alan O'Cais
You are overriding the first install option with the second value, it should be: easyblock = 'ConfigureMake' name = "lm-sensors" version = "3.4.0" homepage = "https://github.com/groeck/lm-sensors; description = """The lm-sensors package, provides user-space support for the hardware monitoring

Re: [easybuild] installing lm-sensors

2018-05-04 Thread Mr. Joseph John
Hi, This is the eb file I used, following your instructions. Is there something wrong with this? easyblock = 'ConfigureMake' name = "lm-sensors" version = "3.4.0" homepage = "https://github.com/groeck/lm-sensors; description = """The lm-sensors package, provides user-space support for the

Re: [easybuild] installing lm-sensors

2018-05-04 Thread Mr. Joseph John
Hi, I tried ETCDIR=%(installdir)s/etc/, but now I am getting error in another directory (/usr/). Is there a way to solve this for all the directories? == 2018-05-04 04:29:53,745 easyblock.py:870 DEBUG Creating the installation directory