[Linux 常用技巧] make时的烦人问题modification time in the future

Apr 29th, 2009

转载本站文章请注明,转载自:扶凯[http://www.php-oa.com]

本文链接: http://www.php-oa.com/2009/04/29/make-modification-time-in-the-future.html

今天因为处理视频时,发现老的版本不能使用,所以编译一个新的来看看,但怎么样打make 都没有反应.

后来实在没有法子,打了一下make clean,清除一下,然后在重来,发现提示时间不对.在make时就提示

make: Warning: File `config.mak’ has modification time 2.7e+04 s in the future
make: warning:  Clock skew detected.  Your build may be incomplete

检查了半天本机时间,也没有问题,后来才发现,原来那个目录是在nfs上,那个nfs的服务器有问题.所以同步了nfs的文件服务器.解决这个问题.

但没多久出现

make: Nothing to be done for `all’

这个比较容易解决点.

make clean,然后在ldconfig一下,解决.

烦人的一天,花了我近三个小时

Del.icio.us Google书签 Digg Live Bookmark Technorati Furl Yahoo书签 Facebook 百度搜藏 新浪 ViVi 365Key 网摘 天极网摘 和讯网摘 博拉网 POCO 网摘 饭否 QQ 书签 Digbuzz 我挖网 Mister Wong
Tags:
  1. linuxbie
    Dec 26th, 2009 at 16:04
    Reply | Quote | #1

    在源文件目录下打touch *即可,即更新所有文件.

  2. admin
    Dec 27th, 2009 at 06:47
    Reply | Quote | #2

    这个早就测试过了,其实是因为我使用的nfs的原因