Discussion:
[emms-help] Info file installed does not have the .info suffice
Alex Vong
2016-07-09 08:15:12 UTC
Permalink
Hi,

I noticed in the makefile, the following line:
install -m 0644 $(DOCDIR)emms.info $(INFODIR)/emms
would install the info file without the .info suffice.

It causes problems, because the package manager I am using (GNU Guix)
geneate a dir file for emacs by finding all the info file based on the
file suffice.

I would suggest to change the above line to:
install -m 0644 $(DOCDIR)emms.info $(INFODIR)/emms.info
which would fix the issue. What do you think?

Thanks,
Alex
Yoni Rabkin
2016-07-09 17:49:19 UTC
Permalink
Post by Alex Vong
Hi,
install -m 0644 $(DOCDIR)emms.info $(INFODIR)/emms
would install the info file without the .info suffice.
It causes problems, because the package manager I am using (GNU Guix)
geneate a dir file for emacs by finding all the info file based on the
file suffice.
install -m 0644 $(DOCDIR)emms.info $(INFODIR)/emms.info
which would fix the issue. What do you think?
I've commited this change to the git repo.

Thanks for the bug report.
--
"Cut your own wood and it will warm you twice"
Alex Vong
2016-07-10 15:30:37 UTC
Permalink
Post by Yoni Rabkin
Post by Alex Vong
Hi,
install -m 0644 $(DOCDIR)emms.info $(INFODIR)/emms
would install the info file without the .info suffice.
It causes problems, because the package manager I am using (GNU Guix)
geneate a dir file for emacs by finding all the info file based on the
file suffice.
install -m 0644 $(DOCDIR)emms.info $(INFODIR)/emms.info
which would fix the issue. What do you think?
I've commited this change to the git repo.
Thanks for the bug report.
Thank you!

Loading...