# # # patch "ChangeLog" # from [1a7518d5400ab1982dbf965285c93da55aacc3c7] # to [8211b739f29c819c383cc437f98b3cbcbf87afa5] # # patch "Makefile.am" # from [81ee0d068b050272c42981fb47eb3e4879929f80] # to [9487ad18acdfc0bb1fe67c666b746eec40dd3a85] # ============================================================ --- ChangeLog 1a7518d5400ab1982dbf965285c93da55aacc3c7 +++ ChangeLog 8211b739f29c819c383cc437f98b3cbcbf87afa5 @@ -1,5 +1,7 @@ 2006-04-07 Matthew Gregan + * Makefile.am: Syntax tweak. I bet this still won't work... + * Makefile.am: Backticks don't nest, use $(). 2006-04-07 Daniel Carosone ============================================================ --- Makefile.am 81ee0d068b050272c42981fb47eb3e4879929f80 +++ Makefile.am 9487ad18acdfc0bb1fe67c666b746eec40dd3a85 @@ -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