如何在没有 Autoconf 的情况下从 git 编译 Autoconf
How do I compile Autoconf from git without already having Autoconf
我使用的 OS 当前没有 Autoconf,因此我尝试使用 git clone git://git.sv.gnu.org/autoconf
从源代码安装,但该文件夹中没有配置。我知道还有其他方法,例如使用包管理器或使用现有配置文件下载 tar 版本。
但是如果我还没有安装 autoconf,我该如何编译 Autoconf?
But how do I compile Autoconf if I don't already have autoconf installed?
从 tarball 或包管理器安装 autoconf
,然后按照 README-hacking
中的步骤操作,例如:
$ autoreconf -vi
将生成 configure
。隐含,你的问题的答案是:如果你按照 README-hacking
.
中的步骤,你不会
如果某个平台上没有可用的软件包,我总是会抓起一个 tarball 来获取 autoconf
的工作副本。
我使用的 OS 当前没有 Autoconf,因此我尝试使用 git clone git://git.sv.gnu.org/autoconf
从源代码安装,但该文件夹中没有配置。我知道还有其他方法,例如使用包管理器或使用现有配置文件下载 tar 版本。
但是如果我还没有安装 autoconf,我该如何编译 Autoconf?
But how do I compile Autoconf if I don't already have autoconf installed?
从 tarball 或包管理器安装 autoconf
,然后按照 README-hacking
中的步骤操作,例如:
$ autoreconf -vi
将生成 configure
。隐含,你的问题的答案是:如果你按照 README-hacking
.
如果某个平台上没有可用的软件包,我总是会抓起一个 tarball 来获取 autoconf
的工作副本。