On Sat, 26 Nov 2016, Henrique Andrade wrote:
Dear Allin,
After
<commands>
./configure --prefix=/Users/henrique/Documents/Desenvolvimento/build
--enable-quiet-build --enable-openmp --without-readline
make
sudo make install
</commands>
I get:
<output>
gretl.desktop
/Users/henrique/Documents/Desenvolvimento/build/share/applications
make[1]: gretl.desktop: No such file or directory
make[1]: *** [sh-install] Error 1
make: *** [install] Error 2
</output>
It's a new error, so I'm feeling we are almost there :-)
gretl.desktop is supposed to be generated by the configure script.
It should be in the xdg subdirectory of your build directory. As
part of the output from running configure there should be a line:
configure: creating ./config.status
followed by several lines of the form
config.status: creating <output-file>
and one of these should read
config.status: creating xdg/gretl.desktop
You could try cd'ing into the xdg subdirectory and running
make -n install
and see what this prints.
Allin