0

CPANからダウンロードしたTk-ExecuteCommandパッケージをインストールしようとしています。

インストール中にこのエラーが発生します。

sait109@debian:~/Desktop/Tk-ExecuteCommand-1.6$ sudo make
make: Warning: File `/usr/lib/perl/5.10/Config.pm' has modification time 2.3e+07 s in the future
Makefile out-of-date with respect to /usr/lib/perl/5.10/Config.pm /usr/lib/perl/5.10/CORE/config.h /usr/local/lib/perl/5.10.0/Tk/Config.pm
Cleaning current config before rebuilding Makefile...
make -f Makefile.old clean > /dev/null 2>&1
/usr/bin/perl Makefile.PL
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "en"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
/home/sait109/Desktop/Tk-ExecuteCommand-1.6 does not start with /usr/local/lib/perl/5.10.0
i.e. building outside Tk itself
Checking if your kit is complete...
Looks good
Writing Makefile for Tk::ExecuteCommand
==> Your Makefile has been rebuilt. <==
==> Please rerun the make command.  <==
false
make: *** [Makefile] Error 1

誰かがこれの修正を知っていますか?ヘルプpls..

4

1 に答える 1

1

そのメッセージの重要な部分は

make: Warning: File `/usr/lib/perl/5.10/Config.pm' has modification time 2.3e+07 s in the future
Makefile out-of-date with respect to /usr/lib/perl/5.10/Config.pm /usr/lib/perl/5.10/CORE/config.h /usr/local/lib/perl/5.10.0/Tk/Config.pm

ローカルタイムスタンプが台無しになり、将来の依存に応じmakeてさまざまなターゲットが混乱する原因になります。Makefile/usr/lib/perl/5.10/Config.pm

どちらが間違っているかに応じて、システムまたはシステムクロックのタイムスタンプを修正すれば、問題はありません。

enさらに、ロケールは構成されているがインストールされていないという警告が表示されます。その名前のロケールが存在することを私は知りません。のようなものを意味している可能性がen_US.UTF-8あります。構成したら、これもインストールする必要があります。ただし、これは発生しているエラーとは関係ありません。

于 2010-11-01T06:21:55.537 に答える