diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-02-09 09:40:43 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-02-09 09:40:43 +0000 |
commit | 927c422d0b182551e1277cbf5fb0439a0def943f (patch) | |
tree | bdcc5d785367024fbe480932898c86ed3dc9b012 /eclass/elisp.eclass | |
parent | Ash, the netbsd shell. Closes 15319 -- thanks to Tavis Ormandy! (diff) | |
download | gentoo-2-927c422d0b182551e1277cbf5fb0439a0def943f.tar.gz gentoo-2-927c422d0b182551e1277cbf5fb0439a0def943f.tar.bz2 gentoo-2-927c422d0b182551e1277cbf5fb0439a0def943f.zip |
Made the file search more robust as per Sascha Ludecke
<sascha@meta-x.de> suggestion in bug #13277.
Diffstat (limited to 'eclass/elisp.eclass')
-rw-r--r-- | eclass/elisp.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index 52b3eaa3c068..7845139d2608 100644 --- a/eclass/elisp.eclass +++ b/eclass/elisp.eclass @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # Author Matthew Kennedy <mkennedy@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.1 2002/10/29 04:40:18 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.2 2003/02/09 09:40:43 mkennedy Exp $ # This eclass sets the site-lisp directory for emacs-related packages. @@ -36,7 +36,7 @@ elisp-site-regen() { ;;; ----------------------------------------------------------------- EOF - ls ${SITELISP}/[0-9][0-9]* |sort -n | \ + ls ${SITELISP}/[0-9][0-9]* |sort -n |grep -vE '~$' | \ while read sf do einfo " Addding $sf..." |