From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7230 invoked by alias); 13 Oct 2014 19:07:36 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 19245 Received: (qmail 6819 invoked from network); 13 Oct 2014 19:07:33 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 From: Greg Klanderman To: zsh-users@zsh.org Subject: Re: zsh 5.0.7 Reply-To: gak@klanderman.net Date: Mon, 13 Oct 2014 15:02:18 -0400 In-Reply-To: <5439CB82.3070401@eastlink.ca> (Ray Andrews's message of "Sat, 11 Oct 2014 17:29:54 -0700") Message-ID: <87h9z7dc91.fsf@lwm.klanderman.net> User-Agent: Gnus/5.1008 (Gnus v5.10.8) XEmacs/21.4.22 (linux) References: <54397CC0.9070206@eastlink.ca> <141011131053.ZM28143@torch.brasslantern.com> <5439A54A.9060304@eastlink.ca> <141011150111.ZM28417@torch.brasslantern.com> <5439CB82.3070401@eastlink.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20140121; t=1413226941; bh=NbbqD24bUZlnV0hqg7FWOaAXKvRvI+MFX1hi3aupUZo=; h=Received:Received:Received:Received:From:To:Subject:Reply-To:Date: Message-ID:MIME-Version:Content-Type; b=SHugCXySRKSYsy90Ne5fhHBok5IL9+yGolcaBY0TUsv3ZC6i+WkmkDQRhX1T1G79q HYHrr4RsbND0vDnGohz2QcE/w+oPNgX5WJN2KRhUzjppT4yM8SgjuN1dH068z3Q0pV fKIx22BmxNLDeAi1LRhTVMxuHe4KCPkwJA45D/2GH49xPsXBuNYgnNzmmD+vjSvUVA 8ocZ/FUkDyAwJKymue6vS+j0GuhzT4FFkPqMG1zopnEKOcRiQ08SZWCxPdHdNu0ujI +xg4oTHgY5/H+8TgbzGPA3bXCEZkEoZkIyx40faJqXYFjF+jnAK2jFB/oSoqIqGjA5 I950KffybR9ug== Hi Ray, on Debian, I build/install zsh as normal (not setting any prefix path options, let it install in /usr/local/bin/zsh) then do this: update-alternatives --install /bin/zsh zsh /usr/local/bin/zsh 100 \ --slave /usr/bin/zsh zsh-usrbin /usr/local/bin/zsh and it will have /bin/zsh and /usr/bin/zsh point to your locally built ones instead of the Debian provided packaged ones. i.e. /bin/zsh will be a link to /etc/alternatives/zsh which will be a link to /usr/local/bin/zsh which you built. Normally, /etc/alternatives/zsh would be a link to /bin/zsh4 on wheezy (zsh package 4.3.17-1), I presume /bin/zsh5 on testing or unstable. Greg