From 46e10dcb54ca376587ed16f2e95d88bf60a42705 Mon Sep 17 00:00:00 2001 From: kueller Date: Wed, 3 Mar 2010 07:32:37 +0000 Subject: [PATCH] =?UTF-8?q?bc=20wird=20jetzt=20auch=20korrekt=20in=20die?= =?UTF-8?q?=20configs=20mit=20=C3=BCebernommen.=20Kleine=20korrektur=20an?= =?UTF-8?q?=20den=20egrep=20statements?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://svn.compuextreme.de/Viitor/V962/ViitorInstall@5440 504e572c-2e33-0410-9681-be2bf7408885 --- GenInstallcfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GenInstallcfg b/GenInstallcfg index db47da6..efc7e42 100755 --- a/GenInstallcfg +++ b/GenInstallcfg @@ -108,8 +108,8 @@ rm /tmp/DepsList$$ cat $DISTTARGET/../install/BaseDevel.cfg exec 3<$DISTTARGET/../install/All.cfg while read <&3 CDROM PKGPATH MODNAME; do - if egrep -q "$MODNAME$" /tmp/DepsListSort$$; then - if ! egrep -q "$MODNAME$" $DISTTARGET/../install/BaseDevel.cfg; then + if egrep -q " ${MODNAME}$" /tmp/DepsListSort$$; then + if ! egrep -q " ${MODNAME}$" $DISTTARGET/../install/BaseDevel.cfg; then echo "$CDROM $PKGPATH $MODNAME" fi fi