diff options
author | IkiWiki <ikiwiki.info> | 2020-03-02 16:22:10 -0500 |
---|---|---|
committer | IkiWiki <ikiwiki.info> | 2020-03-02 16:22:10 -0500 |
commit | c9d8d12bc837261238a643e5c6fdea061057c6a2 (patch) | |
tree | 0e0c9469568f06fab337b76f8c4b595d0323edb3 /backend/resilient | |
parent | 84afe83be371f847b9e5776e507efa9351823b45 (diff) | |
download | standingwithresilience-c9d8d12bc837261238a643e5c6fdea061057c6a2.tar.gz standingwithresilience-c9d8d12bc837261238a643e5c6fdea061057c6a2.zip |
not sure where i am in this, another task came up, but committing changes
Diffstat (limited to 'backend/resilient')
-rw-r--r-- | backend/resilient/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/resilient/__init__.py b/backend/resilient/__init__.py index e9ea49c..27e15db 100644 --- a/backend/resilient/__init__.py +++ b/backend/resilient/__init__.py @@ -102,7 +102,7 @@ class ikiwiki: found = (os.system("%s --version" % binary) == 0) if not found: binary = "%s/ikiwiki/ikiwiki.out" % dep_path - os.environ['PERL5LIB'] = os.path.join(dep_path, 'ikiwiki') + os.environ['PERL5LIB'] = os.path.join(dep_path, 'prefix', 'lib', 'perl5') found = (os.system("%s --version" % binary) == 0) if not found: print("ikiwiki not found: attempting to build") |