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