Skip to content

Commit

Permalink
Fix VMS installation - $config{pointer_size} -> $target{pointer_size}
Browse files Browse the repository at this point in the history
Configurations/descrip.mms.tmpl uses $target{pointer_size}, not
$config{pointer_size}, so the same should be used in installation
scripts, for consistency.

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from #16842)
  • Loading branch information
levitte authored and mattcaswell committed Dec 14, 2021
1 parent 3c9293b commit e30545e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VMS/openssl_ivp.com.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ $ OPENSSLDIR_ = F$PARSE("A.;",OPENSSLDIR,,,"NO_CONCEAL") -
- ".][000000" - "[000000." - "][" - "]A.;" + "."
$
$ v := {- sprintf "%02d", split(/\./, $config{version}) -}
$ pz := {- $config{pointer_size} -}
$ pz := {- $target{pointer_size} -}
$
$ @'INSTALLTOP_'SYS$STARTUP]openssl_startup'v'
$ @'INSTALLTOP_'SYS$STARTUP]openssl_utils'v'
Expand Down
2 changes: 1 addition & 1 deletion VMS/openssl_shutdown.com.in
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $
$ ! Abbrevs
$ DEAS := DEASSIGN /NOLOG 'P1'
$ sv := {- sprintf "%02d%02d", split m|\.|, $config{shlib_version} -}
$ pz := {- $config{pointer_size} -}
$ pz := {- $target{pointer_size} -}
$
$ DEAS OSSL$DATAROOT
$ DEAS OSSL$INSTROOT
Expand Down
2 changes: 1 addition & 1 deletion VMS/openssl_startup.com.in
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ $ ! Abbrevs
$ DEFT := DEFINE /TRANSLATION=CONCEALED /NOLOG 'P1'
$ DEF := DEFINE /NOLOG 'P1'
$ sv := {- sprintf "%02d%02d", split m|\.|, $config{shlib_version} -}
$ pz := {- $config{pointer_size} -}
$ pz := {- $target{pointer_size} -}
$
$ DEFT OSSL$DATAROOT 'OPENSSLDIR_']
$ DEFT OSSL$INSTROOT 'INSTALLTOP_']
Expand Down

0 comments on commit e30545e

Please sign in to comment.