Re: distcleancheck_listfiles

2002-07-28 Thread Alexandre Duret-Lutz
On Sat, Jul 27, 2002 at 11:58:05AM -0700, Bruce Korb wrote: > Makefile.am: > > distcleancheck_listfiles = \ > > find -type f -exec sh -c 'test -f $(scrdir)/{} || echo {}' The -exec argument should be terminated by \; You wrote $(scrdir) instead of $(srcdir). -- Alexandre Duret-Lutz

distcleancheck_listfiles

2002-07-27 Thread Bruce Korb
Hi, I *believe* I followed the documented procedures for permitting the existence of regenerated distributed files. The result is this warning message from find: Makefile.am: > distcleancheck_listfiles = \ > find -type f -exec sh -c 'test -f $(scrdir)/{} || echo {}' S