From 8092f9669aa21e12fd42ba513297b263b9185d0c Mon Sep 17 00:00:00 2001 From: kueller Date: Tue, 2 Feb 2010 15:29:19 +0000 Subject: [PATCH] Kleiner Korrektur beim pkg check in DepsListSort und BaseDevel.cfg... git-svn-id: svn://svn.compuextreme.de/Viitor/V962/ViitorInstall@5317 504e572c-2e33-0410-9681-be2bf7408885 --- GenInstallcfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GenInstallcfg b/GenInstallcfg index 1f4a7fb..db47da6 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 grep -q $MODNAME /tmp/DepsListSort$$; then - if ! grep -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