all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Info file emacs does not exist
@ 2012-10-25 23:58 Clemens Schueller
  2012-10-26  9:36 ` Eli Zaretskii
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Clemens Schueller @ 2012-10-25 23:58 UTC (permalink / raw)
  To: help-gnu-emacs

Hello!

I compiled my emacs from git sources:


But when i type C-h r, emacs says

_Info file emacs does not exist_



How can I fix this problem?

Greetings and TIA
-- 
Clemens Schueller


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Info file emacs does not exist
  2012-10-25 23:58 Info file emacs does not exist Clemens Schueller
@ 2012-10-26  9:36 ` Eli Zaretskii
  2012-10-26  9:45 ` Mark Skilbeck
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Eli Zaretskii @ 2012-10-26  9:36 UTC (permalink / raw)
  To: help-gnu-emacs

> From: Clemens Schueller <schuelli@yline.com>
> Date: Fri, 26 Oct 2012 01:58:12 +0200
> 
> I compiled my emacs from git sources:
> 
> 
> But when i type C-h r, emacs says
> 
> _Info file emacs does not exist_
> 
> 
> 
> How can I fix this problem?

I have no idea: this works for me with the current trunk.  The git
repository lags behind, so perhaps updating to a later trunk revision
might help.  Or maybe this is something related to how your system is
set up.  Try stepping with Edebug through info-emacs-manual command,
or maybe look at pertinent environments variables, such as INFOPATH.



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Info file emacs does not exist
  2012-10-25 23:58 Info file emacs does not exist Clemens Schueller
  2012-10-26  9:36 ` Eli Zaretskii
@ 2012-10-26  9:45 ` Mark Skilbeck
       [not found] ` <mailman.11749.1351244757.855.help-gnu-emacs@gnu.org>
       [not found] ` <mailman.11748.1351244239.855.help-gnu-emacs@gnu.org>
  3 siblings, 0 replies; 5+ messages in thread
From: Mark Skilbeck @ 2012-10-26  9:45 UTC (permalink / raw)
  To: Clemens Schueller; +Cc: help-gnu-emacs

On Fri, Oct 26, 2012 at 01:58:12AM +0200, Clemens Schueller wrote:
> Hello!
> 
> I compiled my emacs from git sources:
> 
> 
> But when i type C-h r, emacs says
> 
> _Info file emacs does not exist_
> 
> 
> 
> How can I fix this problem?
> 
> Greetings and TIA

Olá!

Are you compiling fom source? It looks like you'll need the "makeinfo"
and perhaps the "install-info" binaries on your system. Install these,
then in your emacs source directory,
  1. make info

If all here goes well (there ought to be an ./info directory full of
info files), you can go through the build steps again after doing a 
  make distclean
and you should be good to go!

If you installed Almighty Emacs through a package manager, shame on
your package manager! Be brave, and compile from source.

- mgsk.



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Info file emacs does not exist
       [not found] ` <mailman.11749.1351244757.855.help-gnu-emacs@gnu.org>
@ 2012-10-26 10:12   ` Clemens Schueller
  0 siblings, 0 replies; 5+ messages in thread
From: Clemens Schueller @ 2012-10-26 10:12 UTC (permalink / raw)
  To: help-gnu-emacs

Hello!

Mark Skilbeck wrote on 26.10.2012 at 11:45:
> On Fri, Oct 26, 2012 at 01:58:12AM +0200, Clemens Schueller wrote:


>> I compiled my emacs from git sources:
>> 
>> 
>> But when i type C-h r, emacs says
>> 
>> _Info file emacs does not exist_
>> 
>> 
>> 
>> How can I fix this problem?
>> 
>> Greetings and TIA
>
> Olá!
>
> Are you compiling fom source? It looks like you'll need the "makeinfo"
> and perhaps the "install-info" binaries on your system. Install these,
> then in your emacs source directory,
>   1. make info

makeinfo is installed on my system


> If all here goes well (there ought to be an ./info directory full of
> info files), you can go through the build steps again after doing a 
>   make distclean
> and you should be good to go!
>
> If you installed Almighty Emacs through a package manager, shame on
> your package manager! Be brave, and compile from source.


Its not the fault from my packagemanager (as i wrote, i compile my emacs
from git sources). The problem was, that my INFOPATH variable was not
correct. My emacs is installed under /opt/emacs, so the
/opt/emacs/share/info directory was not listed under the INFOPATH
variable.

--8<---------------cut here---------------start------------->8---
[mente@commander: ~]% grep INFOPATH /etc/profile.env
export INFOPATH='/usr/share/info:/usr/share/gcc-data/x86_64-pc-linux-gnu/4.6.3/info:/usr/share/binutils-data/x86_64-pc-linux-gnu/2.22/info:/opt/emacs/share/info'
--8<---------------cut here---------------end--------------->8---

That was the right solution.


Greetings
-- 
Clemens Schueller


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Info file emacs does not exist
       [not found] ` <mailman.11748.1351244239.855.help-gnu-emacs@gnu.org>
@ 2012-10-26 10:14   ` Clemens Schueller
  0 siblings, 0 replies; 5+ messages in thread
From: Clemens Schueller @ 2012-10-26 10:14 UTC (permalink / raw)
  To: help-gnu-emacs

Hello!

Eli Zaretskii wrote on 26.10.2012 at 11:36:
>> From: Clemens Schueller <schuelli@yline.com>
>> Date: Fri, 26 Oct 2012 01:58:12 +0200

 
>> I compiled my emacs from git sources:
>> 
>> 
>> But when i type C-h r, emacs says
>> 
>> _Info file emacs does not exist_
>> 
>> 
>> 
>> How can I fix this problem?
>
> I have no idea: this works for me with the current trunk.  The git
> repository lags behind, so perhaps updating to a later trunk revision
> might help.  Or maybe this is something related to how your system is
> set up.  Try stepping with Edebug through info-emacs-manual command,
> or maybe look at pertinent environments variables, such as INFOPATH.
>

The INFOPATH variable was the problem - see my reply to Marks Posting.


Greetings and Thanks
-- 
Clemens Schueller


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-10-26 10:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-25 23:58 Info file emacs does not exist Clemens Schueller
2012-10-26  9:36 ` Eli Zaretskii
2012-10-26  9:45 ` Mark Skilbeck
     [not found] ` <mailman.11749.1351244757.855.help-gnu-emacs@gnu.org>
2012-10-26 10:12   ` Clemens Schueller
     [not found] ` <mailman.11748.1351244239.855.help-gnu-emacs@gnu.org>
2012-10-26 10:14   ` Clemens Schueller

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.