diff options
author | Dan Armak <danarmak@gentoo.org> | 2005-02-27 17:52:52 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2005-02-27 17:52:52 +0000 |
commit | 7f3e2e577cf2e4c62979dd2e909627e2849ece28 (patch) | |
tree | 5055ec216886f9b2796eb892a6f902af31df28ad /eclass | |
parent | mips-headers uses an ip30 check now (diff) | |
download | gentoo-2-7f3e2e577cf2e4c62979dd2e909627e2849ece28.tar.gz gentoo-2-7f3e2e577cf2e4c62979dd2e909627e2849ece28.tar.bz2 gentoo-2-7f3e2e577cf2e4c62979dd2e909627e2849ece28.zip |
fix illegal bash syntax
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde-meta.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/kde-meta.eclass b/eclass/kde-meta.eclass index 8a22ef00f88d..78b801ad6c1b 100644 --- a/eclass/kde-meta.eclass +++ b/eclass/kde-meta.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde-meta.eclass,v 1.28 2005/02/27 17:42:47 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-meta.eclass,v 1.29 2005/02/27 17:52:52 danarmak Exp $ # # Author Dan Armak <danarmak@gentoo.org> # Simone Gotti <motaboy@gentoo.org> @@ -193,7 +193,7 @@ function change_makefiles() { dirlistfullpath= for item in *; do - if [ -d $item ] && [ ! $item = "CVS" ] && [ ! "$S/$item" = "$S/admin" ]; then + if [ -d "$item" ] && [ "$item" != "CVS" ] && [ "$S/$item" != "$S/admin" ]; then # add it to the dirlist, with the FULL path and an ending "/" dirlistfullpath="$dirlistfullpath ${1}/${item}" fi |