# # # patch "ChangeLog" # from [b80b34abb58111f7f8f0c65adba86ac1a33640fb] # to [0aa4882c30dd7156e82d17091d74fb90b18f733f] # # patch "Makefile.am" # from [d015f861eed6834f26533667913824ad605f39fb] # to [b3f8360c7bec81f835ec85d084a3044e421d38e9] # ============================================================ --- ChangeLog b80b34abb58111f7f8f0c65adba86ac1a33640fb +++ ChangeLog 0aa4882c30dd7156e82d17091d74fb90b18f733f @@ -1,5 +1,9 @@ 2006-04-07 Nathaniel Smith + * Makefile.am (distcleancheck_listfiles): Another try at this... + +2006-04-07 Nathaniel Smith + * Makefile.am (distcleancheck_listfiles): Attempt to teach distcheck that it's okay that distclean does not remove package_revision.txt and package_full_revision_dist.txt files. ============================================================ --- Makefile.am d015f861eed6834f26533667913824ad605f39fb +++ Makefile.am b3f8360c7bec81f835ec85d084a3044e421d38e9 @@ -570,7 +570,7 @@ # those automake thinks that 'distclean' _should_ remove those files, # and 'distcheck' gets cranky if we don't. So basically what this # line does is tell 'distcheck' to shut up and ignore those two files. -distcleancheck_listfiles = find -type f -exec sh -c '[ {} == "package_revision.txt" ] || [ {} == "package_full_revision_dist.txt" ] || echo {}' ';' +distcleancheck_listfiles = find -type f -exec sh -c '[ "`basename {}`" == "package_revision.txt" ] || [ "`basename {}`" == "package_full_revision_dist.txt" ] || echo {}' ';' # automake doesn't build html docs