[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: A Severe Problem with Make
From: |
Edward Welbourne |
Subject: |
Re: A Severe Problem with Make |
Date: |
Thu, 20 Jul 2017 08:59:04 +0000 |
Iman Moosaie (19 July 2017 19:19)
> I use Ubuntu Linux on my system. I have downloaded and tried to
> install the make-4.2.1 package but when I execute the 'make' command
> (after the package is configured) I encounter a problem and I don't
> know how to resolve. can you help me?
>
> I have put the error results in a text file which I have attached to
> this email.
The errors are not make problems; they are specific to the package
you're building and installing. Check that package: it may have an
INSTALL or README file that tells you how to make this all work.
One problem is a perl script failing to find something; read the perl
man pages to find out how to configure @INC; and look for
test_driver.pl; you might need to install some package that provides it,
or the package you're building and installing it may provide it but have
failed to arrange for make check to get at it.
The other is a permissions problem; you're trying to modify things under
/usr/share/loca/, which normal users typically can't. You probably need
to run make install as root, i.e.
sudo make install
assuming you have sudo privileges.
Eddy.