From e5aa67421db30d11315ac06a9f63a006488eb1be Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Mon, 10 Aug 2009 18:18:29 -0400 Subject: [PATCH] Fix distcheck-hook for missing distributed JS files Use git ls-files not git-ls-files, since git-ls-files is no longer on the path with Git 1.6 --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 2d20ae6d2..8105df567 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,7 +7,7 @@ EXTRA_DIST = \ distcheck-hook: @echo "Checking disted javascript against files in git" @failed=false; \ - for f in `cd $(srcdir) && git-ls-files js` ; do \ + for f in `cd $(srcdir) && git ls-files js` ; do \ if ! test -e $(distdir)/$$f ; then \ echo File missing from distribution: $$f ; \ failed=true ; \