This is the mail archive of the gdb-prs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug compile/18113] GDB 7.9 fails to build when makeinfo is not installed


https://sourceware.org/bugzilla/show_bug.cgi?id=18113

mephi42 at gmail dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mephi42 at gmail dot com

--- Comment #1 from mephi42 at gmail dot com ---
This also affects GDB 7.10. Here is the one-liner that reproduces the issue:

docker run -i -t centos:centos6 sh -c "yum -y install gcc make tar xz && curl
http://ftp.gnu.org/gnu/gdb/gdb-7.10.tar.xz | tar -xJ && cd gdb-7.10 &&
./configure && make && make install"

My workaround:

    echo '#!/bin/sh'                          >makeinfo && \
    echo 'echo "makeinfo (GNU texinfo) 5.2"' >>makeinfo && \
    chmod a+x makeinfo && \
    ./configure MAKEINFO=`realpath ./makeinfo` && \
    make && \
    make install

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]