Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id E866A431FD0 for ; Mon, 24 Jan 2011 06:53:31 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0.804 X-Spam-Level: X-Spam-Status: No, score=0.804 tagged_above=-999 required=5 tests=[DATE_IN_PAST_12_24=0.804] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id KifemNkGfS7v for ; Mon, 24 Jan 2011 06:53:31 -0800 (PST) Received: from max.feld.cvut.cz (max.feld.cvut.cz [147.32.192.36]) by olra.theworths.org (Postfix) with ESMTP id 24EEE431FB6 for ; Mon, 24 Jan 2011 06:53:31 -0800 (PST) Received: from localhost (unknown [192.168.200.4]) by max.feld.cvut.cz (Postfix) with ESMTP id 4991819F30E0; Mon, 24 Jan 2011 15:53:30 +0100 (CET) X-Virus-Scanned: IMAP AMAVIS Received: from max.feld.cvut.cz ([192.168.200.1]) by localhost (styx.feld.cvut.cz [192.168.200.4]) (amavisd-new, port 10044) with ESMTP id TmKp4juhRZip; Mon, 24 Jan 2011 15:53:28 +0100 (CET) Received: from imap.feld.cvut.cz (imap.feld.cvut.cz [147.32.192.34]) by max.feld.cvut.cz (Postfix) with ESMTP id 9EE1419F30DC; Mon, 24 Jan 2011 15:53:28 +0100 (CET) Received: from steelpick.2x.cz (note-sojka.felk.cvut.cz [147.32.86.30]) (Authenticated sender: sojkam1) by imap.feld.cvut.cz (Postfix) with ESMTPSA id 5F31D15C063; Mon, 24 Jan 2011 15:53:28 +0100 (CET) Received: from wsh by steelpick.2x.cz with local (Exim 4.72) (envelope-from ) id 1PhNnM-0002Q5-5V; Mon, 24 Jan 2011 15:53:28 +0100 From: Michal Sojka To: =?utf-8?Q?C=C3=A9dric?= Cabessa , notmuch@notmuchmail.org Subject: Re: [PATCH] configure: add options to disable emacs/zsh/bash and choose install dir. In-Reply-To: <201101231433.43935.ced@ryick.net> References: <201101231433.43935.ced@ryick.net> User-Agent: Notmuch/0.5-86-g1ab1275 (http://notmuchmail.org) Emacs/23.2.1 (x86_64-pc-linux-gnu) Date: Sun, 23 Jan 2011 22:14:22 +0100 Message-ID: <87y66bcogh.fsf@steelpick.2x.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Jan 2011 14:53:32 -0000 Hi C=C3=A9dric, thanks for the patch. I checked it and it didn't break anything for me. But it made me thinking why zsh completion does not work for a long time. Carl, please apply the patch below. -Michal >From 72f6488b39aec318264caf26d2b163f73d3cf694 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Sun, 23 Jan 2011 21:57:07 +0100 Subject: [PATCH] Fix installation of zsh completion --- completion/Makefile.local | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/completion/Makefile.local b/completion/Makefile.local index 6a6012d..1624bd7 100644 --- a/completion/Makefile.local +++ b/completion/Makefile.local @@ -15,4 +15,4 @@ install-$(dir): mkdir -p $(DESTDIR)$(bash_completion_dir) install -m0644 $(bash_script) $(DESTDIR)$(bash_completion_dir)/notmuch mkdir -p $(DESTDIR)$(zsh_completion_dir) - install -m0644 $(zsh_script) $(DESTDIR)$(zsh_completion_dir)/notmuch + install -m0644 $(zsh_script) $(DESTDIR)$(zsh_completion_dir)/_notmuch --=20 1.7.2.3