Running:
fails for me with this error in the log:
/bin/sh: cp: command not found
The problem is that the build script manages to do this:
export "PATH=/usr/bin:<skipped>:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin;/usr/bin"
Note the semi-colon in the path, right after :/bin. That tells the shell to search for binaries in /bin;/usr/bin a directory that does not exist. I cannot figure out what exactly is doing that, but maybe it is obvious to the maintainers.
I can workaround the problem by running:
PATH=$PATH:/dummy vcpkg install openssl
Running:
fails for me with this error in the log:
The problem is that the build script manages to do this:
Note the semi-colon in the path, right after
:/bin. That tells the shell to search for binaries in/bin;/usr/bina directory that does not exist. I cannot figure out what exactly is doing that, but maybe it is obvious to the maintainers.I can workaround the problem by running: