X-Git-Url: https://git.openssl.org/?a=blobdiff_plain;f=Configurations%2Funix-Makefile.tmpl;h=6dbed436f2ed34780a86b1aef2716a2ee50286c2;hb=15a1f19e62b92c33223e2e8e1c19b4f6d0e9ee71;hp=c5d59b8e77db249607dc1561fc12b0d6593547f3;hpb=57ade5711b8b80c19f3d33f46d0e0acd48e68e0a;p=openssl.git diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index c5d59b8e77..6dbed436f2 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -628,7 +628,7 @@ install_html_docs: OUTTOP="$(DESTDIR)$(HTMLDIR)"; \ GENERATE="pod2html --podroot=$(SRCDIR)/doc --htmldir=.. \ --podpath=apps:crypto:ssl --title=\$$Name \ - | sed -e 's|href=\"http://man.he.net/man|href=\"../man|g'"; \ + | perl -pe 's|href=\"http://man.he.net/man|href=\"../man|g; s|href=\"(.*/man.*)(?|href=\"\$$1.html\">|g;'"; \ $(PROCESS_PODS) uninstall_html_docs: @@ -1084,11 +1084,11 @@ EOF foreach my $type (("dso", "lib", "bin", "script")) { next unless defined($unified_info{dirinfo}->{$dir}->{products}->{$type}); - if ($type eq "lib") { - foreach my $lib (@{$unified_info{dirinfo}->{$dir}->{products}->{$type}}) { - push @actions, ""; - } - } else { + # For lib object files, we could update the library. However, it + # was decided that it's enough to build the directory local object + # files, so we don't need to add any actions, and the dependencies + # are already taken care of. + if ($type ne "lib") { foreach my $prod (@{$unified_info{dirinfo}->{$dir}->{products}->{$type}}) { if (dirname($prod) eq $dir) { push @deps, $prod.$extinfo{$type};