Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmake fail at Performing download step (git clone) for 'html' #301

Open
hackob opened this issue Nov 5, 2023 · 1 comment
Open

cmake fail at Performing download step (git clone) for 'html' #301

hackob opened this issue Nov 5, 2023 · 1 comment

Comments

@hackob
Copy link

hackob commented Nov 5, 2023

cmake fails when executing the step where it clones the html repository since it cannot connect to github:

=> => # Cloning into 'html'...                                                              
=> => # fatal: unable to connect to github.com:                                             
=> => # github.com[0: 140.82.114.3]: errno=Connection timed out                             
=> => # Cloning into 'html'...

Tried the following options, same result:

GIT_CLONE=https:
GIT_CLONE=git:
@hackob
Copy link
Author

hackob commented Nov 5, 2023

this patch seams to fix this problem

--- ./CMake/Herc60_CreateTargets.cmake	2023-11-04 22:03:54.936550411 -0600
+++ ../Herc60_CreateTargets.cmake	2023-11-04 22:10:22.812494036 -0600
@@ -409,7 +409,7 @@
 
 externalproject_add( html
         SOURCE_DIR        ${PROJECT_BINARY_DIR}/html
-        GIT_REPOSITORY    "git://github.com/hercules-390/html"
+        GIT_REPOSITORY    "https://github.com/hercules-390/html"
         GIT_TAG           "gh-pages"
         CONFIGURE_COMMAND ""        # No Configure
         BUILD_COMMAND ""            # No build

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant