scripts: fix zsh completion generation

The script should use the just-built curl, not the system one. This fixes
zsh completion generation when no system curl is installed.
This commit is contained in:
Alessandro Ghedini 2015-12-27 18:08:53 +01:00 committed by Daniel Stenberg
parent 92a20413ac
commit fb7cbf75a5
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ all-local: $(ZSH_COMPLETION_FUNCTION_FILENAME)
$(ZSH_COMPLETION_FUNCTION_FILENAME): zsh.pl
@if ! test -x "$(PERL)"; then echo "No perl: can't install zsh.pl"; exit 0; fi
$(PERL) $(srcdir)/zsh.pl > $@
$(PERL) $(srcdir)/zsh.pl $(top_builddir)/src/curl > $@
install-data-local:
$(MKDIR_P) $(DESTDIR)$(ZSH_FUNCTIONS_DIR)