Index: lib/am/distdir.am =================================================================== RCS file: /cvs/automake/automake/lib/am/distdir.am,v retrieving revision 1.20 diff -c -c -r1.20 distdir.am *** distdir.am 2001/07/14 20:12:52 1.20 --- distdir.am 2001/09/18 04:04:05 *************** *** 61,67 **** ## for something like yacc output we will correctly pick up the latest ## version. ## ! if test -f $$file; then d=.; else d=$(srcdir); fi; \ ## ## Make the subdirectory for the file. This is going to make `dist' ## really crawl, but it seems like the only way to do it, given that --- 61,67 ---- ## for something like yacc output we will correctly pick up the latest ## version. ## ! if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ ## ## Make the subdirectory for the file. This is going to make `dist' ## really crawl, but it seems like the only way to do it, given that