CheckInstall no CentOS

0

Estou tentando fazer o CheckInstall em uma versão limpa do CentOS. No entanto, estou com dificuldades. Recebo o seguinte erro:

[root@host checkinstall-1.6.2]# make
for file in locale/checkinstall-*.po ; do \
        case ${file} in \
            locale/checkinstall-template.po)  ;; \
            *) \
                out='echo $file | sed -s 's/po/mo/'' ; \
                msgfmt -o ${out} ${file} ; \
                if [ $? != 0 ] ; then \
                    exit 1 ; \
                fi ; \
            ;; \
        esac ; \
    done    
/bin/sh: line 5: msgfmt: command not found
make: *** [all] Error 1

Como corrigir esses erros de dependência? Sem usar 'yum' se for possível.

    
por Jacob Clark 09.01.2014 / 11:32

1 resposta

1

Você precisa instalar o pacote gettext .

gettext-0.17-16.el6.x86_64 : GNU libraries and utilities for producing multi-lingual messages
Repo        : installed
Matched from:
Other       : Provides-match: /usr/bin/msgfmt
    
por 09.01.2014 / 11:52