Date: Thu, 30 Mar 2017 12:41:08 +0000 (UTC) From: =?UTF-8?Q?Dag-Erling_Sm=c3=b8rgrav?= <des@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r437285 - in head/shells/zsh: . files Message-ID: <201703301241.v2UCf8g0061441@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: des Date: Thu Mar 30 12:41:08 2017 New Revision: 437285 URL: https://svnweb.freebsd.org/changeset/ports/437285 Log: Fix bug in kldload completion (also reported upstream). Approved by: bapt@ Added: head/shells/zsh/files/patch-Completion-BSD-Command-_kld (contents, props changed) Modified: head/shells/zsh/Makefile Modified: head/shells/zsh/Makefile ============================================================================== --- head/shells/zsh/Makefile Thu Mar 30 12:30:58 2017 (r437284) +++ head/shells/zsh/Makefile Thu Mar 30 12:41:08 2017 (r437285) @@ -3,6 +3,7 @@ PORTNAME= zsh DISTVERSION= 5.3.1 +PORTREVISION= 1 CATEGORIES= shells MASTER_SITES= http://www.zsh.org/pub/ \ SF \ Added: head/shells/zsh/files/patch-Completion-BSD-Command-_kld ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh/files/patch-Completion-BSD-Command-_kld Thu Mar 30 12:41:08 2017 (r437285) @@ -0,0 +1,11 @@ +--- Completion/BSD/Command/_kld.orig ++++ Completion/BSD/Command/_kld +@@ -26,7 +26,7 @@ + case "$service" in + kldload) + _arguments -s -S -A "-*" \ +- "-n[don't try to load module if already loaded]" ++ "-n[don't try to load module if already loaded]" \ + '-v[be verbose]' \ + '-q[silence any extraneous warnings]' \ + '*:module to load:_kld_module'
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703301241.v2UCf8g0061441>