From 927c422d0b182551e1277cbf5fb0439a0def943f Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Sun, 9 Feb 2003 09:40:43 +0000 Subject: Made the file search more robust as per Sascha Ludecke suggestion in bug #13277. --- eclass/elisp.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eclass') 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 -# $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..." -- cgit v1.2.3-65-gdbad