I tried to build a new version of OpenOCD, using Liviu Ionescu's build scripts:
``` $ git clone --recurse-submodules https://github.com/xpack-dev-tools/openocd-xpack.git ~/Work/xpacks/openocd-xpack.git $ cd ~ $ git -C ~/Work/xpacks/openocd-xpack.git pull $ xpm run install -C ~/Work/xpacks/openocd-xpack.git $ xpm run docker-prepare --config linux-x64 -C ~/Work/xpacks/openocd-xpack.git $ xpm run docker-build --config linux-x64 -C ~/Work/xpacks/openocd-xpack.git ``` Unfortunately, the build fails: ``` fatal: unable to access 'https://git.savannah.nongnu.org/git/git2cl.git/': The requested URL returned error: 502 fatal: clone of 'https://git.savannah.nongnu.org/git/git2cl.git' into submodule path '/home/kristof/Work/xpacks/openocd-xpack.git/build/linux-x64/sources/openocd.git/tools/git2cl' failed Failed to clone 'tools/git2cl'. Retry scheduled Cloning into '/home/kristof/Work/xpacks/openocd-xpack.git/build/linux-x64/sources/openocd.git/tools/git2cl'... fatal: unable to access 'https://git.savannah.nongnu.org/git/git2cl.git/': The requested URL returned error: 502 fatal: clone of 'https://git.savannah.nongnu.org/git/git2cl.git' into submodule path '/home/kristof/Work/xpacks/openocd-xpack.git/build/linux-x64/sources/openocd.git/tools/git2cl' failed Failed to clone 'tools/git2cl' a second time, aborting ``` As you can see, the problem is this URL: https://git.savannah.nongnu.org/git/git2cl.git/ Please help.