diff options
Diffstat (limited to 'regen/embed.pl')
-rwxr-xr-x | regen/embed.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/regen/embed.pl b/regen/embed.pl index 342e0171f2..0b1ed0d943 100755 --- a/regen/embed.pl +++ b/regen/embed.pl @@ -481,9 +481,11 @@ END for $sym (@globvar) { print $em "#ifdef OS2\n" if $sym eq 'sh_path'; + print $em "#ifdef __VMS\n" if $sym eq 'perllib_sep'; print $em multon($sym, 'G','my_vars->'); print $em multon("G$sym",'', 'my_vars->'); print $em "#endif\n" if $sym eq 'sh_path'; + print $em "#endif\n" if $sym eq 'perllib_sep'; } print $em <<'END'; |