bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Please check about the GIT problem.


From: Henrik Carlqvist
Subject: Re: Please check about the GIT problem.
Date: Sat, 6 Apr 2024 16:14:37 +0200

On Sat, 6 Apr 2024 16:50:33 +0900 (KST)
12zz12 <12zz12@kakao.com> wrote:
> root@uk91-Korea:/home/u/다운로드# tar -zxf git-2.38.5.tar.gz 
> root@uk91-Korea:/home/u/다운로드# ls
> git-2.38.5  git-2.38.5.tar.gz  google-chrome-stable_current_amd64.deb
> root@uk91-Korea:/home/u/다운로드# cd git-2.38.5
> root@uk91-Korea:/home/u/다운로드/git-2.38.5# ls

The "#" in your prompt indicate that you are running the commands as user
root. Usually it is considered best practice to build software as a normal
unprivilged user and switch to the root account only for the installation
step.

> make[2]: 디렉터리 '/home/uk91/다운로드/git-2.38.5' 나감
>     * new asciidoc flags
>     ASCIIDOC git-add.html
> /bin/sh: 1: asciidoc: not found

This is why the build fails, you don't seem to have the asciidoc program
installed.

> root@uk91-Korea:/home/u/다운로드/git-2.38.5# sudo make install ... -y

There is no need to use sudo if you are already root.

> install-doc install-html install-info -y make: 부적절한 옵션 -- 'y'

Make complains about the "-y", what was your intention of that? If that was
intended as an option for make, such options are usually placed before the
targets. However, gnu make does not have any "-y" option.

Even with a correct call of make the installation would fail if you previously
was unable to build.

regards Henrik



reply via email to

[Prev in Thread] Current Thread [Next in Thread]