diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2006-04-02 00:24:51 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2006-04-02 00:24:51 +0000 |
commit | 1a7b20cc91394225c15b47191b281171073f4162 (patch) | |
tree | b092667bb1cafa7908d0c8f01e18d76fbc91fb00 /eclass/font-ebdftopcf.eclass | |
parent | Minor keyword change (diff) | |
download | gentoo-2-1a7b20cc91394225c15b47191b281171073f4162.tar.gz gentoo-2-1a7b20cc91394225c15b47191b281171073f4162.tar.bz2 gentoo-2-1a7b20cc91394225c15b47191b281171073f4162.zip |
Fix find usage.
Diffstat (limited to 'eclass/font-ebdftopcf.eclass')
-rw-r--r-- | eclass/font-ebdftopcf.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/font-ebdftopcf.eclass b/eclass/font-ebdftopcf.eclass index ac363f811ec2..8da5273790c3 100644 --- a/eclass/font-ebdftopcf.eclass +++ b/eclass/font-ebdftopcf.eclass @@ -1,6 +1,6 @@ # Copyright 2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/font-ebdftopcf.eclass,v 1.3 2006/02/17 22:18:20 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/font-ebdftopcf.eclass,v 1.4 2006/04/02 00:24:51 robbat2 Exp $ # Author: Robin H. Johnson <robbat2@gentoo.org> @@ -29,7 +29,7 @@ ebdftopcf() { # Public inheritable functions # font-ebdftopcf_src_compile() { - [ -z "${BDFFILES}" ] && BDFFILES="$(find -name '*.bdf')" + [ -z "${BDFFILES}" ] && BDFFILES="$(find . -name '*.bdf')" ebdftopcf ${BDFFILES} } |