diff options
author | Rich Salz <rsalz@openssl.org> | 2017-03-11 14:56:44 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2017-03-11 14:56:44 +0100 |
commit | 9e183d2271653cbba2d9cf56d40c1356705207aa (patch) | |
tree | 368487095b3fa0e743927b365754695fbbf56734 /Configurations | |
parent | UI docs: Rephrase the UI method function return value description (diff) | |
download | openssl-9e183d2271653cbba2d9cf56d40c1356705207aa.tar.xz openssl-9e183d2271653cbba2d9cf56d40c1356705207aa.zip |
Fix many doc L<> errors
Add 2017 copyright year
Add missing typedef to NAME
Remove ec(7) and bn(7) doc links
Remove .pod link errors, bogus links, make a few typo corrections
Fix some typo's in links and some missing items.
Don't link to C runtime functions (See OPENSSL_malloc for example/precedent)
Document ASN1_tag2str(), add a few typedef's that were missing from NAME
Update doc-nits target; addresses
https://github.com/openssl/openssl/pull/1900#issuecomment-259943891,
Merge check-doc-links into find-doc-nits; if run regularly, would have found
https://github.com/openssl/openssl/pull/2825
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2862)
Diffstat (limited to 'Configurations')
-rw-r--r-- | Configurations/unix-Makefile.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index 01f566569f..26858d42f0 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -289,7 +289,7 @@ clean: libclean -$(RM) `find . -name '*{- $depext -}' -a \! -path "./.git/*"` -$(RM) `find . -name '*{- $objext -}' -a \! -path "./.git/*"` $(RM) core - $(RM) tags TAGS + $(RM) tags TAGS doc-nits $(RM) test/.rnd $(RM) openssl.pc libcrypto.pc libssl.pc -$(RM) `find . -type l -a \! -path "./.git/*"` @@ -597,7 +597,7 @@ generate: generate_apps generate_crypto_bn generate_crypto_objects \ doc-nits: (cd $(SRCDIR); $(PERL) util/find-doc-nits.pl -n ) >doc-nits - if [ -s doc-nits ] ; then cat doc-nits; exit 1; fi + if [ -s doc-nits ] ; then cat doc-nits; rm doc-nits ; exit 1; fi # Test coverage is a good idea for the future #coverage: $(PROGRAMS) $(TESTPROGRAMS) |