make时的烦人问题modification time in the future
今天因为处理视频时,发现老的版本不能使用,所以编译一个新的来看看,但怎么样打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
原因:如果上一次编译时为20071001,你把系统时间改成20070901后再编译就会报这样的错误.
解决:把时间改了或运行下来命令再make
find . -type f -exec touch {} \;