Modified makefile to install runtime files using a for loop, made sure files were referring to PREFIX correctly
diff --git a/runtime/config.py b/runtime/config.py
index a730732..7485171 100755
--- a/runtime/config.py
+++ b/runtime/config.py
@@ -16,8 +16,7 @@
#
import configparser
#TODO: replace path with PREFIX
-apps_path="/usr/share/pdk/bin"
-#apps_path="PREFIX/pdk/bin"
+apps_path="PREFIX/pdk/bin"
config = configparser.ConfigParser(strict=False, allow_no_value=True)
try:
diff --git a/runtime/project_manager.py b/runtime/project_manager.py
index 4747b52..245eeee 100755
--- a/runtime/project_manager.py
+++ b/runtime/project_manager.py
@@ -274,7 +274,7 @@
# TODO: stop hardwired default EFXH035B: get from an overall flow /ef/tech/.ef-config/plist.json
# (or get it from the currently selected project)
#EFABLESS PLATFORM
- for pdkdir_lr in glob.glob('PREFIX'+'/*/libs.tech/'):
+ for pdkdir_lr in glob.glob('PREFIX/*/libs.tech/'):
pdkdir = os.path.split( os.path.split( pdkdir_lr )[0])[0] # discard final .../libs.tech/
(foundry, foundry_name, node, desc, status) = ProjectManager.pdkdir2fnd( pdkdir )
if not foundry or not node: