Can I use the files present after a git clone?

蹲街弑〆低调 提交于 2019-12-06 07:38:22

You should be able to use that clone to do a make.

But note that INSTALL advices to use ./config, not Configure directly.
You can modify Configure, but you should do a ./config after, not ./Configure (unless you want to configure OpenSSL for your operating system manually).

You're right, the problem isn't with your use of Git at all, and is because of the OpenSSL Makefiles. The problem is that make dclean removes required files. Straight after you run make dclean, git status will show that some C files in the test/ directory have been removed. Restoring those files after they have been removed is sufficient to make it work:

git checkout -- 'test/*.c'

What's throwing people off is that you are using Git in ways it is not normally recommended to be used (but actually may well be commonly used), and in ways that can easily cause very similar problems. Like you did in the comments here, though, the simple way to show others that the problem isn't with Git, is to explain the real problem in a way that does not rely on any questionable Git commands. In your question here, you've shown the exact commands that lead to the error message, that can be run straight after git clone without any further user input. I suspect you would have received more useful answers to your other questions if you had done the same there.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!