In /etc/rc.d/init.d/functions, we have:

        # if CUR_LENGTH was set to zero, then end the line
        if [ "${CUR_LENGTH}" == "0" ]; then
                echo ""
        fi

"==" is a bash-specific "pattern matching" operator. In this context, it should be replaced with a plain "=".

--
Alexander E. Patrakov
--
http://linuxfromscratch.org/mailman/listinfo/lfs-dev
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page

Reply via email to