# # # patch "ChangeLog" # from [06edbe600ff233446b7b42d12466a4457dfcaf8e] # to [1a7518d5400ab1982dbf965285c93da55aacc3c7] # # patch "Makefile.am" # from [6fb9f31ea601cedd80e8f36b97dbf6f950553639] # to [81ee0d068b050272c42981fb47eb3e4879929f80] # ============================================================ --- ChangeLog 06edbe600ff233446b7b42d12466a4457dfcaf8e +++ ChangeLog 1a7518d5400ab1982dbf965285c93da55aacc3c7 @@ -1,3 +1,7 @@ +2006-04-07 Matthew Gregan + + * Makefile.am: Backticks don't nest, use $(). + 2006-04-07 Daniel Carosone * monotone.texi: Update more examples to reflect new program ============================================================ --- Makefile.am 6fb9f31ea601cedd80e8f36b97dbf6f950553639 +++ Makefile.am 81ee0d068b050272c42981fb47eb3e4879929f80 @@ -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