Re: clock reverts to epoch on boot?

2006-02-14 Thread Oliver Fromme
Vinny Abello [EMAIL PROTECTED] wrote: CPUTYPE=pentium4 Better use ?=. CFLAGS= -O2 -pipe COPTFLAGS= -O -pipe I recommend not to overide those two at all. Especially your CFLAGS setting might generate broken code because there are sources which are not aliasing-clean, which can break with

Re: clock reverts to epoch on boot?

2006-02-14 Thread Vinny Abello
At 04:45 AM 2/14/2006, Oliver Fromme wrote: Vinny Abello [EMAIL PROTECTED] wrote: CPUTYPE=pentium4 Better use ?=. Yes, I saw that error and corrected it. Thanks. That wasn't the source of my problems actually, but I at least have it specified properly now. CFLAGS= -O2 -pipe

Re: clock reverts to epoch on boot?

2006-02-14 Thread Oliver Fromme
Vinny Abello [EMAIL PROTECTED] wrote: Oliver Fromme wrote: Vinny Abello [EMAIL PROTECTED] wrote: CFLAGS= -O2 -pipe COPTFLAGS= -O -pipe I recommend not to overide those two at all. Especially your CFLAGS setting might generate broken code because there are sources which

Re: clock reverts to epoch on boot?

2006-02-14 Thread Vinny Abello
At 12:29 PM 2/14/2006, Oliver Fromme wrote: Vinny Abello [EMAIL PROTECTED] wrote: Oliver Fromme wrote: Vinny Abello [EMAIL PROTECTED] wrote: CFLAGS= -O2 -pipe COPTFLAGS= -O -pipe I recommend not to overide those two at all. Especially your CFLAGS setting might generate

clock reverts to epoch on boot?

2006-02-13 Thread Vinny Abello
I have an odd problem... I've recently upgraded (binary) from FreeBSD 5.4 to FreeBSD 6.0 then CVSUP'ed to STABLE (6.1 Pre-release) a few days ago, around February 10th it looks like (back when my time worked right) :). I went through the whole thing like normal, rebuilt world, built custom

Re: clock reverts to epoch on boot?

2006-02-13 Thread Chuck Swiger
Vinny Abello wrote: [ ... ] I may try doing a cvsup of source and rebuilding again. My make.conf settings are pretty tame: CPUTYPE=pentium4 CFLAGS= -O2 -pipe COPTFLAGS= -O -pipe Remove the CPUTYPE declaration, or at least decrease it to just pentium. -- -Chuck

Re: clock reverts to epoch on boot?

2006-02-13 Thread Vinny Abello
At 09:49 PM 2/13/2006, Chuck Swiger wrote: Vinny Abello wrote: [ ... ] I may try doing a cvsup of source and rebuilding again. My make.conf settings are pretty tame: CPUTYPE=pentium4 CFLAGS= -O2 -pipe COPTFLAGS= -O -pipe Remove the CPUTYPE declaration, or at least decrease it to just

Re: clock reverts to epoch on boot?

2006-02-13 Thread Vinny Abello
At 10:04 PM 2/13/2006, Vinny Abello wrote: At 09:49 PM 2/13/2006, Chuck Swiger wrote: Vinny Abello wrote: [ ... ] I may try doing a cvsup of source and rebuilding again. My make.conf settings are pretty tame: CPUTYPE=pentium4 CFLAGS= -O2 -pipe COPTFLAGS= -O -pipe Remove the CPUTYPE

Re: clock reverts to epoch on boot?

2006-02-13 Thread Chuck Swiger
Vinny Abello wrote: [ ... ] Nevermind. I just answered my own question. I should have RTFM more carefully. :) :-) If CPUTYPE is defined in your /etc/make.conf, make sure to use the ?= instead of the = assignment operator, so that buildworld can override the CPUTYPE if it

Re: clock reverts to epoch on boot?

2006-02-13 Thread Vinny Abello
At 10:25 PM 2/13/2006, Chuck Swiger wrote: Vinny Abello wrote: [ ... ] Nevermind. I just answered my own question. I should have RTFM more carefully. :) :-) If CPUTYPE is defined in your /etc/make.conf, make sure to use the ?= instead of the = assignment operator, so that

Re: clock reverts to epoch on boot?

2006-02-13 Thread Vinny Abello
At 10:28 PM 2/13/2006, Vinny Abello wrote: At 10:25 PM 2/13/2006, Chuck Swiger wrote: Vinny Abello wrote: [ ... ] Nevermind. I just answered my own question. I should have RTFM more carefully. :) :-) If CPUTYPE is defined in your /etc/make.conf, make sure to use the ?= instead of