Re: mtime of installed files

2010-07-27 Thread Ralf Wildenhues
Hi Ludo, * Ludovic Courtès wrote on Tue, Jul 27, 2010 at 10:18:39AM CEST: > Ralf Wildenhues writes: > > > guile_install_ccacheDATA = install-ccacheDATA > > $(guile_install_ccacheDATA): install-modDATA > > For the record, this was fixed along these lines. The auto-compile > mtime checks were

Re: mtime of installed files

2010-07-27 Thread Ludovic Courtès
Hello! Ralf Wildenhues writes: > Now I need to ask in more detail: do you actually need "newer" or just > "not older"? Because if the latter, then you could just let the rule to > install $(nodist_foobar_DATA) depend on the rule to install > $(dist_foobar_SOURCES), the latter of which I assume

Re: mtime of installed files

2010-07-21 Thread Ralf Wildenhues
Hi Ludovic, * Ludovic Courtès wrote on Wed, Jul 21, 2010 at 06:27:46PM CEST: > Ralf Wildenhues writes: > > * Ludovic Courtès wrote on Tue, Jul 20, 2010 at 06:28:46PM CEST: > >> For this to work, we need “make install” to guarantee the relation > >> mtime(installed-object) >= mtime(installed-source

Re: mtime of installed files

2010-07-21 Thread Ludovic Courtès
Hi Ralf, Ralf Wildenhues writes: > * Ludovic Courtès wrote on Tue, Jul 20, 2010 at 06:28:46PM CEST: >> Background: Guile 1.9/2.0 has an auto-compilation feature whereby if a >> source file has no corresponding object file in the search path, or if >> the object file is older than the source file

Re: mtime of installed files

2010-07-20 Thread Ralf Wildenhues
Hi Ludovic, * Ludovic Courtès wrote on Tue, Jul 20, 2010 at 06:28:46PM CEST: > Background: Guile 1.9/2.0 has an auto-compilation feature whereby if a > source file has no corresponding object file in the search path, or if > the object file is older than the source file, then the source file is >

mtime of installed files

2010-07-20 Thread Ludovic Courtès
Hello, Background: Guile 1.9/2.0 has an auto-compilation feature whereby if a source file has no corresponding object file in the search path, or if the object file is older than the source file, then the source file is automatically recompiled and stored in ~/.cache/guile/ccache. Packages that u