Skip to content

Commit 97e919c

Browse files
committed
common/iniinfo -remove qtvcp specific library path
1 parent d15a681 commit 97e919c

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

lib/python/common/iniinfo.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ def __init__(self, ini=None):
3333
# Are we using RIP or installed version?
3434
self.RIP_FLAG = bool(os.environ.get('LINUXCNC_RIP_FLAG', False))
3535

36-
base = self.get_base()
37-
self.LIB_PATH = self.get_lib_dir(base)
36+
self.BASE = self.get_base()
3837

3938
if not self.LINUXCNC_IS_RUNNING:
4039
# Reset the log level for this module
@@ -873,9 +872,6 @@ def get_base(self):
873872
LOG.verbose('Using Linuxcnc Base directory: {}'.format(base))
874873
return base
875874

876-
def get_lib_dir(self, base):
877-
return os.path.join(base, "share", "qtvcp")
878-
879875
######################################################
880876
def __getitem__(self, item):
881877
return getattr(self, item)

0 commit comments

Comments
 (0)