diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-05-14 05:21:46 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-05-14 05:21:46 +0000 |
commit | 37cf09fd80048440b25ce786ad3188901cb2e019 (patch) | |
tree | 4a8164555b1c913ba60af53cdb9cec37cb4f8d3d | |
parent | Remove old. (diff) | |
download | gentoo-2-37cf09fd80048440b25ce786ad3188901cb2e019.tar.gz gentoo-2-37cf09fd80048440b25ce786ad3188901cb2e019.tar.bz2 gentoo-2-37cf09fd80048440b25ce786ad3188901cb2e019.zip |
Fix quoting QA warning.
(Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
-rw-r--r-- | app-vim/ebnf-syntax/ChangeLog | 7 | ||||
-rw-r--r-- | app-vim/ebnf-syntax/ebnf-syntax-1.1-r1.ebuild | 6 |
2 files changed, 8 insertions, 5 deletions
diff --git a/app-vim/ebnf-syntax/ChangeLog b/app-vim/ebnf-syntax/ChangeLog index 2d22b9894d50..a3d229d70f23 100644 --- a/app-vim/ebnf-syntax/ChangeLog +++ b/app-vim/ebnf-syntax/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-vim/ebnf-syntax -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/ebnf-syntax/ChangeLog,v 1.15 2012/12/07 18:30:58 ulm Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/ebnf-syntax/ChangeLog,v 1.16 2013/05/14 05:21:46 radhermit Exp $ + + 14 May 2013; Tim Harder <radhermit@gentoo.org> ebnf-syntax-1.1-r1.ebuild: + Fix quoting QA warning. 07 Dec 2012; Ulrich Müller <ulm@gentoo.org> ebnf-syntax-1.1.ebuild, ebnf-syntax-1.1-r1.ebuild: diff --git a/app-vim/ebnf-syntax/ebnf-syntax-1.1-r1.ebuild b/app-vim/ebnf-syntax/ebnf-syntax-1.1-r1.ebuild index 767d400e2ee3..076a4b56e849 100644 --- a/app-vim/ebnf-syntax/ebnf-syntax-1.1-r1.ebuild +++ b/app-vim/ebnf-syntax/ebnf-syntax-1.1-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/ebnf-syntax/ebnf-syntax-1.1-r1.ebuild,v 1.10 2012/12/07 18:30:58 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/ebnf-syntax/ebnf-syntax-1.1-r1.ebuild,v 1.11 2013/05/14 05:21:46 radhermit Exp $ inherit vim-plugin @@ -14,7 +14,7 @@ VIM_PLUGIN_HELPTEXT=\ "This plugin provides syntax highlighting for EBNF (ISO/IEC 14997) files." src_unpack() { - unpack "${A}" + unpack ${A} cd "${S}" # don't use hi link, bug #101799. sed -i -e 's,hi link,hi def link,' syntax/ebnf.vim || die "sed failed" |