diff options
-rw-r--r-- | app-vim/bnf-syntax/ChangeLog | 7 | ||||
-rw-r--r-- | app-vim/bnf-syntax/bnf-syntax-1.2-r1.ebuild | 6 |
2 files changed, 8 insertions, 5 deletions
diff --git a/app-vim/bnf-syntax/ChangeLog b/app-vim/bnf-syntax/ChangeLog index 18adf8093a5b..35cad90d6471 100644 --- a/app-vim/bnf-syntax/ChangeLog +++ b/app-vim/bnf-syntax/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-vim/bnf-syntax -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/bnf-syntax/ChangeLog,v 1.16 2012/12/07 18:28:12 ulm Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/bnf-syntax/ChangeLog,v 1.17 2013/05/14 05:23:33 radhermit Exp $ + + 14 May 2013; Tim Harder <radhermit@gentoo.org> bnf-syntax-1.2-r1.ebuild: + Fix quoting QA warning. 07 Dec 2012; Ulrich Müller <ulm@gentoo.org> bnf-syntax-1.2-r1.ebuild: Fix LICENSE, bug 445808. diff --git a/app-vim/bnf-syntax/bnf-syntax-1.2-r1.ebuild b/app-vim/bnf-syntax/bnf-syntax-1.2-r1.ebuild index 7badc64d4caa..97ff9b4a3e5d 100644 --- a/app-vim/bnf-syntax/bnf-syntax-1.2-r1.ebuild +++ b/app-vim/bnf-syntax/bnf-syntax-1.2-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/bnf-syntax/bnf-syntax-1.2-r1.ebuild,v 1.11 2012/12/07 18:28:12 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/bnf-syntax/bnf-syntax-1.2-r1.ebuild,v 1.12 2013/05/14 05:23:33 radhermit Exp $ inherit vim-plugin @@ -14,7 +14,7 @@ VIM_PLUGIN_HELPTEXT=\ "This plugin provides syntax highlighting for BNF files." src_unpack() { - unpack "${A}" + unpack ${A} cd "${S}" # fix hi link to use def, bug #101790. sed -i -e 's,hi link,hi def link,g' syntax/bnf.vim || die "sed failed" |