From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28432 invoked by alias); 8 Aug 2013 16:11:13 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 31641 Received: (qmail 8793 invoked from network); 8 Aug 2013 16:11:07 -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,RCVD_IN_DNSWL_NONE, SPF_HELO_PASS,T_TVD_MIME_NO_HEADERS autolearn=ham version=3.3.2 Received-SPF: none (ns1.primenet.com.au: domain at rezic.de does not designate permitted sender hosts) X-Authentication-Warning: biokovo.herceg.de: eserte set sender to slaven@rezic.de using -f To: zsh-workers@zsh.org Subject: completion addition for _make Reply-to: slaven@rezic.de From: Slaven Rezic X-Mailer: GNU Emacs/sendmail [version 22.3.1] Date: Thu, 08 Aug 2013 17:45:40 +0200 Message-ID: <87li4c89uj.fsf@biokovo.herceg.de> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Provags-ID: V02:K0:D9Mt4XiDX4PlqfZi075pPYcF7rUDVF2wvINgBydO2LG nqO7KsbVHa40EJ34yZWUsIsRguRqJyQ6C+aeSY7/dEgyCah/dg qng7WD4q9cdSIAlTf+6TbM2/fhRGqObZklbUnjbj9bvH2Bn+R2 U6tJjU9dD4BqIEjctrprTvyfaxl5lrlT2VcX8DBrMSISPD95Wn 3/sqTgTpjMnYkQmk3E2wWNEawHdf8cNYTbOElksbwskxypAL1l yZTmxTVbbT0t7D3WyACVjxqgyYxrEVkOSPf4A+X/58iN+hsy9Y rJIZQ5nBDv/K1443+vZDmRDFx0yPZGaGxEPivhzV6weaShTmL8 HMU5acJDARbm0y8mvGbQ4VILhPI9j7COOm1A7LYLF See attached patch. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-added-freebsd-make-to-list-of-make-like-commands.patch >>From 8035cbb97d8daa04a277fab2db528d3fbec9d8e2 Mon Sep 17 00:00:00 2001 From: Slaven Rezic Date: Thu, 8 Aug 2013 17:41:54 +0200 Subject: [PATCH] added freebsd-make to list of make-like commands freebsd-make may be found in the Debian package freebsd-buildutils. It behaves like FreeBSD's system make. --- Completion/Unix/Command/_make | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Completion/Unix/Command/_make b/Completion/Unix/Command/_make index 0c5371d..b7c825a 100644 --- a/Completion/Unix/Command/_make +++ b/Completion/Unix/Command/_make @@ -1,4 +1,4 @@ -#compdef make gmake pmake dmake +#compdef make gmake pmake dmake freebsd-make # TODO: Based on targets given on the command line, show only variables that # are used in those targets and their dependencies. -- 1.7.2.5 -- Slaven Rezic - slaven rezic de BBBike - route planner for cyclists in Berlin WWW version: http://www.bbbike.de Perl/Tk version for Unix and Windows: http://bbbike.sourceforge.net --=-=-=--