[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: generated Makefile wants to run missing after configure (broken --di
From: |
Bob Proulx |
Subject: |
Re: generated Makefile wants to run missing after configure (broken --disable-dependency-tracking?) |
Date: |
Wed, 27 Aug 2008 11:16:54 -0600 |
User-agent: |
Mutt/1.5.13 (2006-08-11) |
Vincent Lefevre wrote:
> The file system is a vfat, so that after de-archiving the tarball, the
> timestamps are incorrect (the mtime can't be set back in the past).
I think the best and easiest workaround is to set all of the file
times to the same time. Then make will consider them up to date.
$ cd PROJECTDIR && find . -type f -exec touch -r . {} +
But if you can't set the time on files then that won't work.
Therefore I would simply try to get all of the files up to the current
time without a reference file. That seems like it should even on
pretty broken systems. This naturally has race potential but seems
like it might work most of the time.
$ cd PROJECTDIR && find . -type f -exec touch {} +
Bob
- generated Makefile wants to run missing after configure (broken --disable-dependency-tracking?), Vincent Lefevre, 2008/08/27
- Re: generated Makefile wants to run missing after configure (broken --disable-dependency-tracking?), Ralf Wildenhues, 2008/08/27
- Re: generated Makefile wants to run missing after configure (broken --disable-dependency-tracking?), Vincent Lefevre, 2008/08/27
- Re: generated Makefile wants to run missing after configure (broken --disable-dependency-tracking?), Ralf Wildenhues, 2008/08/27
- Re: generated Makefile wants to run missing after configure (broken --disable-dependency-tracking?), Vincent Lefevre, 2008/08/27
- Re: generated Makefile wants to run missing after configure (broken --disable-dependency-tracking?), Ralf Wildenhues, 2008/08/31
- Re: generated Makefile wants to run missing after configure (broken --disable-dependency-tracking?), Vincent Lefevre, 2008/08/31
- Re: generated Makefile wants to run missing after configure (broken --disable-dependency-tracking?), Ralf Wildenhues, 2008/08/31
- Re: generated Makefile wants to run missing after configure (broken --disable-dependency-tracking?), Vincent Lefevre, 2008/08/31
Re: generated Makefile wants to run missing after configure (broken --disable-dependency-tracking?),
Bob Proulx <=