[Nasm-bugs] [Bug 3392735] New: make install fails because nasm.1 and ndisasm.1 are not made

noreply-nasm at dev.nasm.us noreply-nasm at dev.nasm.us
Thu Feb 4 11:50:18 PST 2021


https://bugzilla.nasm.us/show_bug.cgi?id=3392735

            Bug ID: 3392735
           Summary: make install fails because nasm.1 and ndisasm.1 are
                    not made
           Product: NASM
           Version: 2.15.xx
          Hardware: All
                OS: Linux
            Status: OPEN
          Severity: annoyance
          Priority: Medium
         Component: Documentation
          Assignee: nobody at nasm.us
          Reporter: mark+nasm at mdsh.com
                CC: chang.seok.bae at intel.com, gorcunov at gmail.com,
                    hpa at zytor.com, nasm-bugs at nasm.us
     Obtained from: Built from git using configure

Although ./configure correctly finds that asciidoc is not installed:

configure: WARNING: No asciidoc package found, cannot build man pages

make install still tries to install nasm.1

git clone https://github.com/netwide-assembler/nasm.git
cd nasm
git checkout tags/nasm-2.15.05 -b tag_nasm-2.15.05
./autogen.sh
./configure --prefix="/opt/ffbuild"
make
make install
...
/bin/mkdir -p /opt/ffbuild/bin
/usr/bin/install -c nasm /opt/ffbuild/bin/nasm
/usr/bin/install -c ndisasm /opt/ffbuild/bin/ndisasm
/bin/mkdir -p /opt/ffbuild/share/man/man1
/usr/bin/install -c -m 644 ./nasm.1 /opt/ffbuild/share/man/man1/nasm.1
/usr/bin/install: cannot stat './nasm.1': No such file or directory
Makefile:389: recipe for target 'install' failed
make: *** [install] Error 1

Work-around
===========

Make the man pages, does require that asciidoc is available, which is not
required otherwise.

make all nasm.1 ndisasm.1
make install

-- 
You are receiving this mail because:
You are watching all bug changes.
You are on the CC list for the bug.


More information about the Nasm-bugs mailing list