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
This commit is contained in:
parent
fdd50f09dd
commit
e5aa67421d
@ -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 ; \
|
||||
|
Loading…
Reference in New Issue
Block a user