# # # patch "ChangeLog" # from [92b7a564cbbd56f8786462e5b1ea40de9b23eaf6] # to [02c58c08ec4b8fa1673b1cbfb20d45efcdfe7e5a] # # patch "Makefile.am" # from [b3f8360c7bec81f835ec85d084a3044e421d38e9] # to [6fb9f31ea601cedd80e8f36b97dbf6f950553639] # ============================================================ --- ChangeLog 92b7a564cbbd56f8786462e5b1ea40de9b23eaf6 +++ ChangeLog 02c58c08ec4b8fa1673b1cbfb20d45efcdfe7e5a @@ -1,3 +1,7 @@ +2006-04-07 Matthew Gregan + + * Makefile.am (distcleancheck_listfiles): Fix up find(1) syntax. + 2006-04-07 Nathaniel Smith * Makefile.am (distcleancheck_listfiles): Another try at this... ============================================================ --- Makefile.am b3f8360c7bec81f835ec85d084a3044e421d38e9 +++ Makefile.am 6fb9f31ea601cedd80e8f36b97dbf6f950553639 @@ -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 '[ "`basename {}`" == "package_revision.txt" ] || [ "`basename {}`" == "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