Boost logo

Boost-Build :

From: Andre Hentz (gclbb-jamboost_at_[hidden])
Date: 2003-04-16 04:45:46


On Tue, 15 Apr 2003, Andre Hentz wrote:
>
> I'll patch bjam and try again. I'll let you know the results.
>
Well, I would if the patch weren't empty. I assume the patch was going
to make file_time look like this:

int
file_time(
char *filename,
time_t *time )
{
struct stat statbuf;

if( stat( filename, &statbuf ) < 0 )
return -1;

*time = statbuf.st_mtime;
if( *time == 0 ) /* HERE */
*time = 1; /* HERE */
return 0;
}

With those changes, stage.py fails with:

mkdir: cannot create directory `/cygdrive/c/DOCUME~1': File exists

which I think is a unrelated problem.

Best,

Andre Hentz

P.S.: BTW, stage.py used to pass for me because I had TEMP=/tmp and the
default is TEMP=/cygdrive/c/DOCUME~1/LOCALS~1/ANDREH~1.

 


Boost-Build list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk