diff options
author | Richard Levitte <levitte@openssl.org> | 2016-07-06 02:08:53 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-07-06 02:08:53 +0200 |
commit | e45c78fc98aca728f73d7d1b4b85611efdd6b1d6 (patch) | |
tree | 0a9f68353f8cb228e57714343718acd75b7ff870 /Configurations | |
parent | 5aa8096fd002590f8a6a2dd05a7853c482b4677c (diff) |
VMS: make sure there's a file extension when creating files
When creating the library $lib.olb, make sure the extension is there.
Otherwise, a logical name with the same name as the file in question
will redirect the creation elsewhere.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'Configurations')
-rw-r--r-- | Configurations/descrip.mms.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Configurations/descrip.mms.tmpl b/Configurations/descrip.mms.tmpl index 225f385f91..5d98ee779b 100644 --- a/Configurations/descrip.mms.tmpl +++ b/Configurations/descrip.mms.tmpl @@ -681,7 +681,7 @@ EOF @{$args{objs}})); return <<"EOF"; $lib.OLB : $objs - LIBRARY/CREATE/OBJECT $lib + LIBRARY/CREATE/OBJECT $lib.OLB $fill_lib - PURGE $lib.OLB EOF |