The man page for EVP_BytesToKey ends up being a symbolic link to itself after a "make install" of openssl 0.9.7c. It looks like changes were made to .../util/extract_names.pl called by the Makefile within the install_docs section that affect that perl script's output. It is supposed to extact the names from the *.pod file so the Makefile can create links to the original man page. The "grep -v" line in the Makefile is failing in this case because .../util/extract_names.pl is now outputting the name with a space before it:
# perl util/extract-names.pl < doc/crypto/EVP_BytesToKey.pod EVP_BytesToKey Using the perl script from openssl-0.9.7b results in: # perl util/extract-names.pl < doc/crypto/EVP_BytesToKey.pod EVP_BytesToKey ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]
