web-dev-qa-db-ja.com

autoreconfが「Ca n't exec "libtoolize"」で失敗する

Autotoolsについて学びたかったので、YouTubeでいくつかのチュートリアルを見始めました。

helloという名前のフォルダーを作成してから、configure.acファイルを作成しました。

AC_INIT([hello],[.01])
AC_OUTPUT 

保存してautoreconf -iを実行しました。明らかに、これはインストールされていないため、初めて機能しませんでした。次に、autoconfSudo apt-get install autoconf2.13コマンドでインストールしました。

この後、私は再びautoreconf -iを実行しましたが、以下のようにエラーが発生します:

Can't exec "libtoolize": No such file or directory at /usr/bin/autoreconf2.50 line 196.
Use of uninitialized value in pattern match (m//) at /usr/bin/autoreconf2.50 line 196.
12
abkds

やったほうがいい Sudo apt-get install build-essential libtool

36
UVV

これを試して..

Sudo apt-get install automake autoconf libtool autoreconf -i

これでうまくいきました。

5
pbu