Home > Archive > Unix Programming > March 2008 > hi i need help
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| devesh 2008-03-13, 8:16 am |
| hi all ,
when i use the make file given below i get the warning message..
clock skew detected your build may be incomplete.how can i remove
this warning
pls help me..
the make file which i use is ...
obj-M:=hello.o
all:
make -C/lib/modules/$(shellUname-r)/build M=$(PWD)modules
clean:
make -C/lib/modules/$(shellUname-r)/build M=$(PWD)clean
thanks in advance..
| |
| Robert Harris 2008-03-13, 8:16 am |
| devesh wrote:
> hi all ,
> when i use the make file given below i get the warning message..
> clock skew detected your build may be incomplete.how can i remove
> this warning
> pls help me..
>
> the make file which i use is ...
>
>
> obj-M:=hello.o
> all:
> make -C/lib/modules/$(shellUname-r)/build M=$(PWD)modules
> clean:
> make -C/lib/modules/$(shellUname-r)/build M=$(PWD)clean
>
>
> thanks in advance..
You have to fix your clocks!
Robert
| |
| Barry Margolin 2008-03-13, 7:52 pm |
| In article
<407a2d32-8c54-4d90-ab3b-50dcace72de8@s8g2000prg.googlegroups.com>,
devesh <deveshjk@gmail.com> wrote:
> hi all ,
> when i use the make file given below i get the warning message..
> clock skew detected your build may be incomplete.how can i remove
> this warning
> pls help me..
>
> the make file which i use is ...
>
>
> obj-M:=hello.o
> all:
> make -C/lib/modules/$(shellUname-r)/build M=$(PWD)modules
> clean:
> make -C/lib/modules/$(shellUname-r)/build M=$(PWD)clean
>
>
> thanks in advance..
This happens when you're using a network file server, and the clock on
your client machine is behind the clock on the server. Make reports
this error if the timestamp on one of the files is in the future.
Use NTP to synchronize all your clocks.
--
Barry Margolin, barmar@alum.mit.edu
Arlington, MA
*** PLEASE don't copy me on replies, I'll read them in the group ***
|
|
|
|
|