The problem is this line:
make: Warning: File `mvx9000rtu.c' has modification time 2.5e+04 s in the
future
make chooses what items to rebuild based on timestamps. One of those
things is the dependency-analysis file, .o/mvx9000rtu.d. When make has
finished making all the dependency-analysis files, it restarts so that
it can build with all the dependency information. However, that
dependency information tells it that it has to rebuild .o/mvx9000rtu.d
any time mvx9000rtu.c is newer, which leads to the looping.
The real problem to diagnose and fix is why the file mvx9000rtu.c got a
future modification time (is it because your system's clock is wrong,
perhaps? or because you got the file from an archive format and
restored with timestamps, but the timestamps were in the future?). You
can also "fix" this by making the modification time the current time:
touch mvx9000rtu.c
Jeff
------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
Emc-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/emc-developers