Created
April 19, 2015 21:29
-
-
Save dzitkowskik/e8e330e24000b06c9fe2 to your computer and use it in GitHub Desktop.
automake error
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Compiling Log4cplus with automake using ./configure and make i got an error as below: | |
...@...:~/tmp/log4cplus$ make | |
CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash /home/.../tmp/log4cplus/missing aclocal-1.15 -I m4 | |
/home/.../tmp/log4cplus/missing: linia 81: aclocal-1.15: nie znaleziono polecenia | |
WARNING: 'aclocal-1.15' is missing on your system. | |
You should only need it if you modified 'acinclude.m4' or | |
'configure.ac' or m4 files included by 'configure.ac'. | |
The 'aclocal' program is part of the GNU Automake package: | |
<http://www.gnu.org/software/automake> | |
It also requires GNU Autoconf, GNU m4 and Perl in order to run: | |
<http://www.gnu.org/software/autoconf> | |
<http://www.gnu.org/software/m4/> | |
<http://www.perl.org/> | |
Makefile:1465: polecenia dla obiektu 'aclocal.m4' nie powiodły się | |
make: *** [aclocal.m4] Błąd 127 | |
to solve it one must run: | |
$ sudo autoreconf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment