Jump to content
  • 0

Problem Help Please :(


Radian

Question


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  1546
  • Reputation:   192
  • Joined:  07/23/14
  • Last Seen:  

while compiling on my server and modified the DOUBLE CASTING rate this error shows up

make[1]: Warning: File `status.c' has modification time 2.5e+04 s in the future
        CC      status.c
        CC      storage.c
        CC      trade.c
        CC      unit.c
        CC      vending.c
        LD      map-server
make[1]: warning:  Clock skew detected.  Your build may be incomplete.

Link to comment
Share on other sites

6 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  76
  • Reputation:   11
  • Joined:  04/13/12
  • Last Seen:  

could you please show the part that you edited?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  1546
  • Reputation:   192
  • Joined:  07/23/14
  • Last Seen:  

This part.

case SC_DOUBLECAST:
val2 = 30+10*val1; // Trigger rate

and i change it with this

case SC_DOUBLECAST:
val2 = 5+5*val1; // Trigger rate
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  143
  • Reputation:   30
  • Joined:  12/23/11
  • Last Seen:  

That message is usually an indication that some of your files have modification times later than the current system time
Simple solution:

# touch <filename>
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  1546
  • Reputation:   192
  • Joined:  07/23/14
  • Last Seen:  

 

That message is usually an indication that some of your files have modification times later than the current system time

Simple solution:

# touch <filename>

 

how should i trigger this? touch status.c like this? on putty?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  76
  • Reputation:   11
  • Joined:  04/13/12
  • Last Seen:  

yes in the putty shell  (not sure if you have to be logged in as root).

 

Your problem can occur if your server has a different timezone than the system

on wich you changed the file.

 

(Hope my explanation is true @Jarek?)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  1546
  • Reputation:   192
  • Joined:  07/23/14
  • Last Seen:  

I think yes, it is required to login. since you cant access it when changing something..


but my question is how to use that command touch .../.../status.c like this?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...