The EDK2 build was using 'make files', as follows:

make files
cd -

function filelist ()
{
    echo '1,/# Autogenerated files list starts here/p'
    echo '/# Autogenerated files list ends here/,$p'
    echo '/# Autogenerated files list starts here/a\'

    while read LINE; do
        case "$LINE" in
            RELATIVE_DIRECTORY=*)
                eval "$LINE"
                ;;
            LIBSRC=*)
                LIBSRC=$(echo "$LINE" | sed s/^LIBSRC=//)
                for FILE in $LIBSRC; do
                    if [ "$FILE" != "b_print.c" ]; then
                        echo -e '  
$(OPENSSL_PATH)/'$RELATIVE_DIRECTORY/$FILE\\r\\
                    fi
                done
                ;;
        esac
    done
    echo -e \\r
}

filelist < "${OPENSSL_PATH}/MINFO" |  sed -n -f - -i OpensslLib.inf


It wasn't pretty, but it worked. Now it doesn't. What should I be doing
instead?

-- 
David Woodhouse                            Open Source Technology Centre
david.woodho...@intel.com                              Intel Corporation


-- 
Ticket here: http://rt.openssl.org/Ticket/Display.html?id=4464
Please log in as guest with password guest if prompted

Attachment: smime.p7s
Description: S/MIME cryptographic signature

-- 
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev

Reply via email to