diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2007-10-15 07:59:15 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2007-10-15 07:59:15 +0000 |
commit | 2189210ab3e6d1c4c844972561e7a1e197e60b0e (patch) | |
tree | 64257f66853fc5e92b355868bfc44b7d308edcb2 /app-misc/note/note-1.3.3.ebuild | |
parent | Warn for the CONFIG_AFS_FS option in the linux kernel (bug #172016) (diff) | |
download | historical-2189210ab3e6d1c4c844972561e7a1e197e60b0e.tar.gz historical-2189210ab3e6d1c4c844972561e7a1e197e60b0e.tar.bz2 historical-2189210ab3e6d1c4c844972561e7a1e197e60b0e.zip |
fix quoting for variable, thanks Donnie
Package-Manager: portage-2.1.3.9
Diffstat (limited to 'app-misc/note/note-1.3.3.ebuild')
-rw-r--r-- | app-misc/note/note-1.3.3.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app-misc/note/note-1.3.3.ebuild b/app-misc/note/note-1.3.3.ebuild index 4860a05f5f90..7bb5fed49740 100644 --- a/app-misc/note/note-1.3.3.ebuild +++ b/app-misc/note/note-1.3.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/note/note-1.3.3.ebuild,v 1.1 2007/10/15 07:40:41 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/note/note-1.3.3.ebuild,v 1.2 2007/10/15 07:59:15 opfer Exp $ inherit perl-app @@ -43,7 +43,7 @@ src_install() { for v in mysql text dbm general; do if ! use ${v}; then for u in `find "${D}" -type f -name *${v}.*pm`; do - rm ${u} + rm "${u}" done fi done |