sendmail启动是的问题:Warning: File `Makefile ...

发表于:2007-06-08来源:作者:点击数: 标签:
系统是rh9.0,安装完成后,直接用rpm包升级sendmail到8.12.8,编译成功,restart时,提示如下,但是可以正常收发邮件,是什么问题,如何才能解决? 启动sendmail:make:***Warning:File`Makefile'hasmodificationtimeinthefuture(2003-03-2622:56:062002-06-

系统是rh9.0,安装完成后,直接用rpm包升级sendmail到8.12.8,编译成功,restart时,提示如下,但是可以正常收发邮件,是什么问题,如何才能解决? 

启动 sendmail: make: *** Warning: File `Makefile' has modification time in the future (2003-03-26 22:56:06 > 2002-06-19 10:30:49.944327)
make: warning:  Clock skew detected.  Your build may be incomplete.

 xff263 回复于:2003-06-19 11:29:07
check your system date. -> $ man date
if it is false, set it -> $ man clock

if the compilation don't work anyway, try this:

$ find /path/to/sendmail-source -exec touch -t 042904001999.00 {} \;
and then do a 'make' in the src dir.

The system returns an error code, because the makefile and other files
has an timestamp in the future. May be your clock screwed up?!


搜了一篇帖子,铁在上面,一检查机器的时间发现,不对当正确修改机器的时间后,便一切正常,不会吧,sendmail有这事?

 gadfly 回复于:2003-06-19 12:34:10
有可能的。前面peng回答过这个问题,找找看吧

 peng 回复于:2003-06-19 13:34:57
因为你重新编译了sendmail.cf文件,生成的sendmail.cf文件时间和/etc/mail/*的时间不一制。
#touch /etc/mail/*,就应该ok了。

原文转自:http://www.ltesting.net