problem to install rocrail-1.3-air-revno895

Asked by risernhagen

When trying to install rocrail-1.3-air-revno895 I get the following error message:

minitrix:/home/rudi/Downloads/rocrail-1.3-air-revno895/Rocrail # make
echo "const int bzr = " > common/version.h
bzr revno >> common/version.h
Permission denied (publickey).
bzr: ERROR: Connection closed: Unexpected end of message. Please check connectivity and permissions, and report a bug if problems persist.
make: *** [version] Error 3

What goes wrong?
Thanks in advance

Question information

Language:
English Edit question
Status:
Solved
For:
Rocrail Edit question
Assignee:
No assignee Edit question
Solved by:
Rocrail
Solved:
Last query:
Last reply:
Revision history for this message
Best Rocrail (r.j.versluis) said :
#1

It seems that this lightweight checkout needs launchpad to find out its revision number.
The release of Air will have a branch source tar ball to avoid this problem.
In the meantime you can hack the makefile and remove the version from the all target:

is now:
all: version

change to:
all:

it will use a wrong version number, but it will compile.

Revision history for this message
risernhagen (rudolf-isernhagen) said :
#2

Thanks Rocrail, that solved my question.