diff options
Diffstat (limited to 'vms')
-rw-r--r-- | vms/ChangeLog | 5 | ||||
-rw-r--r-- | vms/build_gawk_pcsi_desc.com | 8 |
2 files changed, 11 insertions, 2 deletions
diff --git a/vms/ChangeLog b/vms/ChangeLog index 92fb7ab3..06382ce2 100644 --- a/vms/ChangeLog +++ b/vms/ChangeLog @@ -1,3 +1,8 @@ +2015-07-02 John E. Malmberg <wb8tyw@qsl.net> + + * build_gawk_pcsi_desc.com: Update to support new VMS + producer of VSI. + 2015-05-19 Arnold D. Robbins <arnold@skeeve.com> * 4.1.3: Release tar ball made. diff --git a/vms/build_gawk_pcsi_desc.com b/vms/build_gawk_pcsi_desc.com index 63d149e6..33cf3137 100644 --- a/vms/build_gawk_pcsi_desc.com +++ b/vms/build_gawk_pcsi_desc.com @@ -96,6 +96,7 @@ $! Required product dependencies. $!---------------------------------- $ vmsprd = "DEC" $ if base .eqs. "I64VMS" then vmsprd = "HP" +$ vsiprd = "VSI" $! $ write pdsc " software ''vmsprd' ''base' VMS ;" $ arch_type = f$getsyi("ARCH_NAME") @@ -109,8 +110,11 @@ $ if dashver .eqs. "-" then dashver = "" $ vmstag = majver + minver + dashver $ code = f$extract(0, 1, arch_type) $ arch_code = f$extract(0, 1, arch_type) -$ write pdsc - - " if (not <software ''vmsprd' ''base' VMS version minimum ''node_swvers'>) ;" +$ line_out = - + " if ((not <software ''vsiprd' ''base' VMS version minimum" + - + " ''node_swvers'>) and" + - + " (not <software ''vmsprd' ''base' VMS version minimum ''node_swvers'>));" +$ write pdsc line_out $ write pdsc " error NEED_VMS''vmstag';" $ write pdsc " end if;" $! |