summaryrefslogtreecommitdiffstats
path: root/Configurations/common.tmpl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-15 18:45:54 +0100
committerRichard Levitte <levitte@openssl.org>2016-02-19 11:52:15 +0100
commit5386287cfcf0a4165fac742aa21455db3d49b3ab (patch)
tree37899904fd8b33b16b299c3a788308c6263eefd2 /Configurations/common.tmpl
parentc8c2b77900f9808fc644d206d8715a78dd9801bd (diff)
Small rename fest in unified, obj2dynlib -> obj2dso
Since we're using the acronym DSO everywhere else and that's a common name for that kind of object, we might as well do so here as well. Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'Configurations/common.tmpl')
-rw-r--r--Configurations/common.tmpl10
1 files changed, 5 insertions, 5 deletions
diff --git a/Configurations/common.tmpl b/Configurations/common.tmpl
index d7d01dc339..f0860dd781 100644
--- a/Configurations/common.tmpl
+++ b/Configurations/common.tmpl
@@ -70,14 +70,14 @@
}
# doengine is responsible for building engines. It will call
- # obj2dynlib, and also makes sure all object files for the library
+ # obj2dso, and also makes sure all object files for the library
# are built.
sub doengine {
my $lib = shift;
- $OUT .= obj2dynlib(lib => $lib,
- objs => [ map { (my $x = $_) =~ s|\.o$||; $x }
- @{$unified_info{sources}->{$lib}} ],
- deps => [ resolvedepends($lib) ]);
+ $OUT .= obj2dso(lib => $lib,
+ objs => [ map { (my $x = $_) =~ s|\.o$||; $x }
+ @{$unified_info{sources}->{$lib}} ],
+ deps => [ resolvedepends($lib) ]);
map { doobj($_, $lib, intent => "lib") } @{$unified_info{sources}->{$lib}};
}