diff options
| author | Jeremy Rosenberg <jeremy@oneupanalytics.com> | 2017-12-01 14:03:57 -0500 |
|---|---|---|
| committer | Jeremy Rosenberg <jeremy@oneupanalytics.com> | 2017-12-01 14:03:57 -0500 |
| commit | 34189b07e24dd54cc4e0fefcc383a4a5a316cc7a (patch) | |
| tree | 7bdb5fbbc78352a7d1925722f256be79275a9c45 | |
| parent | 7059da91f84547a18afab8d2d87349aa63cbd782 (diff) | |
| download | pymba-34189b07e24dd54cc4e0fefcc383a4a5a316cc7a.tar.gz pymba-34189b07e24dd54cc4e0fefcc383a4a5a316cc7a.zip | |
Issue 61: vimbadll locator should use 64-bit environment variable for aarch64.
| -rw-r--r-- | pymba/vimbadll.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pymba/vimbadll.py b/pymba/vimbadll.py index 5ea0288..fb49fec 100644 --- a/pymba/vimbadll.py +++ b/pymba/vimbadll.py @@ -64,7 +64,7 @@ else: elif 'aarch64' in os.uname()[4]: assert os.environ.get( "GENICAM_GENTL64_PATH"), "you need your GENICAM_GENTL64_PATH environment set. Make sure you have Vimba installed, and you have loaded the /etc/profile.d/ scripts" - tlPath = [p for p in os.environ.get("GENICAM_GENTL32_PATH").split(":") if p][0] + tlPath = [p for p in os.environ.get("GENICAM_GENTL64_PATH").split(":") if p][0] vimba_dir = "/".join(tlPath.split("/")[1:-3]) vimbaC_path = "/" + vimba_dir + "/VimbaC/DynamicLib/arm_64bit/libVimbaC.so" else: |
