0

このページを参考に Android で Firefox をビルドしてみます。 シンプルな Firefox for Android ビルド

ただし、ビルド コマンド./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.

これがエラーのペーストビンです。

ありがとう。

4

1 に答える 1

0

私のUbuntu 16.04 VMには、autoconf 2.69がインストールされていました。ただし、Android 版 Firefox を正常にビルドするには、autoconf 2.13 が必要です。

次を使用して解決しました:

$ sudo apt-get remove autoconf
$ sudo apt-get install autoconf2.13
于 2016-05-18T07:48:15.763 に答える