2016-05-10 2 views
0

このページを参照してAndroidでFirefoxを作成しようとしています。 Simple Firefox for Android buildAndroidでFirefoxを作成する

しかし、を構築./machビルドコマンドはautoconfのは、すでにシステムにインストールされているが、エラー

ERROR: Could not find autoconf 2.13 

で失敗します。

$ 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.

感謝のペーストビンです。

答えて

0

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

は以下を使用して、それを解決しました:

$ sudo apt-get remove autoconf 
$ sudo apt-get install autoconf2.13 
関連する問題