Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

aclocal not found for mingw sh autogen.sh execution

Tags:

windows

mingw

i'm trying to execute

./autogen.sh 

script in cppunit folder from

http://www.freedesktop.org/wiki/Software/cppunit

but in a mingw shell(sh) i get next error:

error: aclocal not found

aclocal m4 scripts are in

c:\MinGW\share\

directory.

How to fix that error?

like image 269
Vyacheslav Avatar asked Dec 05 '22 00:12

Vyacheslav


1 Answers

Had a similar problem when compiling a libmodbus library (it uses the same build principle). I have entered the following commands in MSYS shell:

pacman -S msys/libtool

pacman -S msys/autoconf

pacman -S msys/automake-wrapper

After that I was able to execute autogen.sh

like image 96
Ivan P. Avatar answered Jan 05 '23 18:01

Ivan P.