尝试通过参考此页面在Android上构建Firefox。 Simple Firefox for Android build
但是,构建命令 ./ mach build 失败并显示错误
ERROR: Could not find autoconf 2.13
但是系统上已经安装了autoconf。
$ autoconf --version
autoconf (GNU Autoconf) 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+/Autoconf: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>, <http://gnu.org/licenses/exceptions.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by David J. MacKenzie and Akim Demaille.
这是error.
的pastebin感谢。
答案 0 :(得分:0)
在我的Ubuntu 16.04 VM上安装了autoconf 2.69。但是,要成功构建适用于Android的Firefox,需要autoconf 2.13。
使用以下方法解决它:
$ sudo apt-get remove autoconf
$ sudo apt-get install autoconf2.13