我正在尝试从源代码(通过 git)安装 Debian 软件包。我下载了该软件包,更改为该软件包的目录并运行./configure
命令,但它返回了bash: ./configure: No such file or directory
.可能是什么问题?文件configure.ac
位于程序文件夹中。
./configure
make
sudo make install
答案1
如果该文件名为configure.ac,
做 $> autoconf
取决于:M4、Automake
如果您不确定该怎么做,
尝试 $> cat readme
它们必须意味着您使用“autoconf”生成可执行的“配置”文件。
所以顺序是:
$> autoconf
$> ./configure
$> make
$> make install
答案2
生成配置脚本的故障保护是autoreconf -i
,它不仅负责调用autoconf
自身,还负责许多可能需要的其他工具。