Dachstein's linuxrc script rewrites the previous line to the backdisk file
when it can't find a package file making it appear that the same package was
loaded more than once.

Changing

    [ -n "$backdisk"  ] && echo $backdisk >>$PFX/backdisk

    if [ $fnd -eq 0 ]; then
        echo -n " (nf!)"
    fi

to

    if [ $fnd -eq 0 ]; then
        echo -n " (nf!)"
    else
        [ -n "$backdisk"  ] && echo $backdisk >>$PFX/backdisk
    fi

seems to resolve the problem.

Rodney


_______________________________________________
Leaf-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user

Reply via email to