diff options
Diffstat (limited to 'xlators/features/glupy/src/glupy.py')
| -rw-r--r-- | xlators/features/glupy/src/glupy.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/xlators/features/glupy/src/glupy.py b/xlators/features/glupy/src/glupy.py index eda8aebb0bb..b9fc3700fa6 100644 --- a/xlators/features/glupy/src/glupy.py +++ b/xlators/features/glupy/src/glupy.py @@ -9,9 +9,10 @@  ##  import sys +import os  from ctypes import * -dl = CDLL("",RTLD_GLOBAL) +dl = CDLL(os.getenv("PATH_GLUSTERFS_GLUPY_MODULE", ""),RTLD_GLOBAL)  class call_frame_t (Structure):  | 
