make error when building v0.8.7 #15
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When trying to build libgourou, after downloading the tar.gz sources, the "make" command failed. The "lib" part of Makefile executes within "scripts/setup.sh" the"git" command that produces the following messages:
$ git clone git://soutade.fr/soutade/updfparser.git lib/updfparser
Cloning into 'lib/updfparser'...
fatal: unable to connect to soutade.fr:
soutade.fr[0: 176.131.178.13]: errno=Connection refused
soutade.fr[1: 2001:861:3186:7f80::de8:e7e5]: errno=Cannot assign requested address
As a result the "clone" function could not be performed. I fixed that error by modifying the command in "scripts/setup.sh" to:
$ git clone https://forge.soutade.fr/soutade/uPDFParser.git lib/updfparser
That works. Perhaps it makes sense to modify "setup.sh" in the main release to a right value.
PS:
Oops... I just see, that you have modified the script. So please ignore my message.
Yes. I saw it while working on #14
Thanks for your report.