Automake-1.14 is failing at make
NickName:gringo Ask DateTime:2019-08-05T22:03:27

Automake-1.14 is failing at make

I downloaded automake-1.14 by following this tutorial on Ubuntu 16.04 ./configure passed without any error. But the moment I ran make it gave an error.

I actually removed automake-1.15 from linux because when I was installing protobuf 2.6.1 it says that i can't find automake-1.14. Therefore I remove automake by apt-get autoremove automake. And ran the following commands

$ wget http://ftp.gnu.org/gnu/automake/automake-1.14.tar.gz
$ tar xvzf automake-1.14.tar.gz
$ cd automake-1.14
$ ./configure
$ make # FAIL HERE
$ sudo make install

The Error is the following:

anybody@anywhere:~/anyshare/automake-1.14$ make
  GEN      t/testsuite-part.am
  GEN      m4/amversion.m4
CDPATH="${ZSH_VERSION+.}:" && cd . && "/home/anybody/anyshare/automake-1.14/t/wrap/aclocal-1.14" 
Can't locate /home/anybody/anyshare/automake-1.14/bin/aclocal in @INC (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.22.1 /usr/local/share/perl/5.22.1 /usr/lib/x86_64-linux-gnu/perl5/5.22 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.22 /usr/share/perl/5.22 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /home/anybody/anyshare/automake-1.14/t/wrap/aclocal-1.14 line 29.
Makefile:2494: recipe for target 'aclocal.m4' failed
make: *** [aclocal.m4] Error 2

Copyright Notice:Content Author:「gringo」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/57360227/automake-1-14-is-failing-at-make

More about “Automake-1.14 is failing at make” related questions

Automake-1.14 is failing at make

I downloaded automake-1.14 by following this tutorial on Ubuntu 16.04 ./configure passed without any error. But the moment I ran make it gave an error. I actually removed automake-1.15 from linux

Show Detail

make on raspberry pi returns WARNING: 'automake-1.14' is missing on your system

I am installing a software on a raspberry pi model B+ with the newest (29.3.2015) version of Raspbian freshly installed. The software I am opting to install is OWFS. First I install the required

Show Detail

How to make continuous testing auto jump to failing test?

Using Visual Studio 2017 and R# 2017.1 EAP 3 So I'm a keyboard junky and don't want to touch my mouse unless I have to. When using continuous testing in resharper, I'm in my editor window, and am

Show Detail

Coq make failing on Omega

I'm trying to follow this but the provided source files are failing make with this error make[1]: Entering directory '/home/myhome/Dropbox/org/coq/cpdt' COQC src/CpdtTactics.v File "./src/

Show Detail

Can I make an XCTest Expectation without failing?

I am using Xcode 7, Swift UI Automation. I need to wait for a UIButton to appear in my home screen. I set an expectation for "exists == 1". This UIButton sometimes appears, sometime it doesn't. D...

Show Detail

How to make travis ci build failing graphic different for each git branch

So I have this github repo with multiple branches here: https://github.com/WalnutiQ/WalnutiQ and a build passing badge from travis ci on the main README.md Whenever I push a commit to any branch i...

Show Detail

Is there a way to make it easier to debug failing, non-terminating, tests?

If a #[test] function accidentally loops forever, the test suite doesn't finish. If you kill it (eg ctrl-c), cargo test seems to exit silently, so you get neither a stack trace (if enabled) or a r...

Show Detail

Make test failing for Wordnet-Similarity

I am trying to install Wordnet-Similarity-2.05. But it fails ath the "make test" step. Could someone Please explain why the "make test" is failing and what i could fix it? Following are the details,

Show Detail

Sphinxbase make/install failing

I'm trying to install sphinxbase and pocketsphinx on Debian Jessie as detailed in this tutorial but running make check during the installation of sphinxbase is failing; I think this is leading to my

Show Detail

Claim a specific failing test in Jenkins

One team I am working on uses Jenkins + PHPUnit for CI. I am looking for a good way to indicate a particular person is addressing a particular test which may be failing the build. The Claim plugin

Show Detail