Skip to content

Commit

Permalink
Remove duplicated XINDEX Exception file
Browse files Browse the repository at this point in the history
Duplication causes issues on case-insensitve environments.

Remove gtm_routines entries causing the GTM specific routines to be
found as part of the uncategorized test.

Change-Id: Iec35a9797a78865879bdc69d29482aa5b3e3e48f
  • Loading branch information
josephsnyder committed Jan 2, 2020
1 parent 6223d4d commit e6970c7
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 145 deletions.
69 changes: 0 additions & 69 deletions Packages/Uncategorized/XINDEXException/GTM.GTMHELP

This file was deleted.

69 changes: 0 additions & 69 deletions Packages/Uncategorized/XINDEXException/GTM.gtmhelp

This file was deleted.

2 changes: 2 additions & 0 deletions Python/vista/ParseCSVforPackagePrefixes.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ def FindPackagePrefixes(packagename,packages_csv_file):
excluded.add(prefix)
# Exclude all system (%) routines
excluded.add("%")
excluded.add("GTM")
excluded.add("gtm")
included = included - excluded
else:
inSpecifiedPackage=False
Expand Down
8 changes: 1 addition & 7 deletions Scripts/Install/GTM/createVistaInstance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -192,13 +192,7 @@ echo "source $basedir/etc/env" >> $basedir/.bashrc

# Setup base gtmroutines
gtmroutines="\$basedir/r/\$gtmver(\$basedir/r)"

# 64bit GT.M can use a shared library instead of $gtm_dist
if [[ $gtm_arch == "x86_64" && -e $basedir/lib/gtm/libgtmutil.so ]]; then
echo "export gtmroutines=\"$gtmroutines $basedir/lib/gtm/libgtmutil.so $basedir/lib/gtm\"" >> $basedir/etc/env
else
echo "export gtmroutines=\"$gtmroutines $basedir/lib/gtm\"" >> $basedir/etc/env
fi
echo "export gtmroutines=\"$gtmroutines $basedir/lib/gtm/libgtmutil.so\"" >> $basedir/etc/env

# prog.sh - priviliged (programmer) user access
# Allow access to ZSY
Expand Down

0 comments on commit e6970c7

Please sign in to comment.